1 2 3 4 5 6 7 8 9 10 11 12 13 14 | function Create -Shortcut ([string] $shortcutName , [string] $target , [string] $username , [string] $iconTarget , [string] $workingDirectory = "" ) { $WshShell = New-Object -comObject WScript.Shell; $Shortcut = $WshShell .CreateShortcut( "$Home\Desktop\$shortcutName`.lnk" ); Write-Host "C:\Windows\System32\runas.exe /user:$username /netonly `" $target ` "" ; $Shortcut .TargetPath = "C:\Windows\System32\runas.exe" $Shortcut .Arguments = "/user:$username /netonly `" $target ` "" ; if ([string]::IsNullOrEmpty( $iconTarget )) { $Shortcut .IconLocation = "$target, 0" ; } else { $Shortcut .IconLocation = $iconTarget ; } $Shortcut .WorkingDirectory = $workingDirectory ; $Shortcut .Save(); } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | param( [string] $ProjectPrefix = "TEST" , # $(Read-Host "Project Prefix"), [string] $userName = "domain\user" # $(Read-Host "Username") ) function Main { Create -Shortcut "$ProjectPrefix Visual Studio 2010" "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe" $userName ; Create -Shortcut "$ProjectPrefix SQL Server Management Studio" "C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\Ssms.exe" $userName ; Create -Shortcut "$ProjectPrefix Visual Studio Command Line" "%comspec% /k `" C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat` " x86" $userName -iconTarget "%comspec%, 0" ; Create -Shortcut "$ProjectPrefix LINQPad 4" "C:\Program Files (x86)\LINQPad\LINQPad.exe" $userName ; Create -Shortcut "$ProjectPrefix Internet Explorer" "C:\Program Files (x86)\Internet Explorer\iexplore.exe" $userName ; } function Create -Shortcut ([string] $shortcutName , [string] $target , [string] $username , [string] $iconTarget , [string] $workingDirectory = "" ) { $WshShell = New-Object -comObject WScript.Shell; $Shortcut = $WshShell .CreateShortcut( "$Home\Desktop\$shortcutName`.lnk" ); Write-Host "C:\Windows\System32\runas.exe /user:$username /netonly `" $target ` "" ; $Shortcut .TargetPath = "C:\Windows\System32\runas.exe" $Shortcut .Arguments = "/user:$username /netonly `" $target ` "" ; if ([string]::IsNullOrEmpty( $iconTarget )) { $Shortcut .IconLocation = "$target, 0" ; } else { $Shortcut .IconLocation = $iconTarget ; } $Shortcut .WorkingDirectory = $workingDirectory ; $Shortcut .Save(); } & Main; |