Guest User

Untitled

a guest
Jan 21st, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. # Display a sorted list of all installed UWP applications
  2. Get-AppxPackage | Sort-Object | Foreach { $_.Name }
  3.  
  4. # Import all (self-signed) certificates in the current folder
  5. @(ls *.cer).ForEach({ Import-Certificate -CertStoreLocation Cert:\CurrentUser\My -FilePath $_; })
  6.  
  7. # Run 'git-pull-all' command for all children of C:\Dev\
  8. ls C:\Dev\ | foreach { git-pull-all $_ }
Add Comment
Please, Sign In to add comment