-
-
Save wormeyman/8049786 to your computer and use it in GitHub Desktop.
Revisions
-
wormeyman revised this gist
Oct 20, 2015 . 1 changed file with 12 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ 'Start The Script Dim SetWshNetwork Set WshNetwork = WScript.CreateObject("WScript.Network") Set wsc = WScript.CreateObject("WScript.Shell") Set lnk = wsc.CreateShortcut(wsc.SpecialFolders("desktop") & "\Go-Global.LNK") 'Commands lnk.targetpath = "C:\Program Files\GraphOn\GO-Global\Client\gg-client.exe" lnk.arguments = "-h hosted.logoscms.com -c -u " & WshNetwork.UserName & " -p Password" lnk.description = "DB Access" lnk.workingdirectory = "C:\Program Files\GraphOn\GO-Global\Client" lnk.save 'End Script -
wormeyman revised this gist
Oct 20, 2015 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,6 +7,6 @@ Set lnk = wsc.CreateShortcut(wsc.SpecialFolders("desktop") & "\Go-Global.LNK") lnk.targetpath = "C:\Program Files (x86)\GraphOn\GO-Global\Client\gg-client.exe" lnk.arguments = "-h hosted.logoscms.com -c -u " & WshNetwork.UserName & " -p Password" lnk.description = "DB Access" lnk.workingdirectory = "C:\Program Files (x86)\GraphOn\GO-Global\Client" lnk.save 'End Script -
wormeyman renamed this gist
Feb 26, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
wormeyman renamed this gist
Feb 26, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
yaks created this gist
Dec 20, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ 'Start The Script Dim SetWshNetwork Set WshNetwork = WScript.CreateObject("WScript.Network") Set wsc = WScript.CreateObject("WScript.Shell") Set lnk = wsc.CreateShortcut(wsc.SpecialFolders("desktop") & "\Go-Global.LNK") 'Commands lnk.targetpath = "C:\Program Files (x86)\GraphOn\GO-Global\Client\gg-client.exe" lnk.arguments = "-h hosted.logoscms.com -c -u " & WshNetwork.UserName & " -p Password" lnk.description = "DB Access" lnk.workingdirectory = "C:\Program Files (x86)\GraphOn\GO-Global\Client" lnk.save 'End Script