Skip to content

Instantly share code, notes, and snippets.

View YR-ZR0's full-sized avatar
Sailing the K8S Seas

James YR-ZR0

Sailing the K8S Seas
View GitHub Profile

Keybase proof

I hereby claim:

  • I am yr-zr0 on github.
  • I am yr_zr0 (https://keybase.io/yr_zr0) on keybase.
  • I have a public key ASDsIg5sHnZYdcbacF1akz8Ff2rUddoJd5XYVaKVInW4qAo

To claim this, I am signing this object:

@YR-ZR0
YR-ZR0 / CopyStart.ps1
Created May 28, 2016 17:05
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