mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-02 09:06:40 +02:00
- Improved Windows UX, Added System Tray, Kinto icon assets
This commit is contained in:
14
windows/NoShell.vbs
Normal file
14
windows/NoShell.vbs
Normal file
@@ -0,0 +1,14 @@
|
||||
If WScript.Arguments.Count >= 1 Then
|
||||
ReDim arr(WScript.Arguments.Count-1)
|
||||
prog = WScript.Arguments(0)
|
||||
For i = 1 To WScript.Arguments.Count-1
|
||||
Arg = WScript.Arguments(i)
|
||||
If InStr(Arg, " ") > 1 Then Arg = """" & Arg & """"
|
||||
arr(i) = Arg
|
||||
Next
|
||||
|
||||
RunCmd = Join(arr)
|
||||
' CreateObject("Wscript.Shell").Run RunCmd, 0, True
|
||||
Set oShell = CreateObject("Shell.Application")
|
||||
oShell.ShellExecute prog, RunCmd, , "runas", 0
|
||||
End If
|
Reference in New Issue
Block a user