Skip to content

Instantly share code, notes, and snippets.

@YR-ZR0
Created May 28, 2016 17:05
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YR-ZR0/d88a9f88d0052d835aeda2700ff2f05e to your computer and use it in GitHub Desktop.
Save YR-ZR0/d88a9f88d0052d835aeda2700ff2f05e to your computer and use it in GitHub Desktop.
Fast Copy to Startup folder (PowerShell)
//Script to Copy shortcuts to Startup Folder
[System.Reflection.Assembly]::LoadWithPartialName("System.windows.forms") | Out-Null
$OpenFileDialog = New-Object System.Windows.Forms.OpenFileDialog
$OpenFileDialog.ShowDialog()|Out-Null
$File = $OpenFileDialog.filename
$startup = [environment]::getfolderpath("Startup")
Copy-Item $File $startup
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment