Skip to content

Instantly share code, notes, and snippets.

View simonholm's full-sized avatar
:octocat:

Simon Holm simonholm

:octocat:
View GitHub Profile

code-insiders --list-extensions | % {"code-insiders --install-extensions $_"}

@simonholm
simonholm / filerecovery.md
Last active July 8, 2020 05:16
Windows File Recovery CLI tool
@simonholm
simonholm / winget.md
Last active July 14, 2020 06:23
Windows Package Manager

 ms-windows-store://pdp/?productid=9nblggh4nns1
 
 
 
@simonholm
simonholm / rust_fencing.md
Created July 18, 2020 08:11
testing rust practice code fencing
fn main() {
    println!("Hello, world!");
}
@simonholm
simonholm / ps_remove_winapps.md
Last active September 10, 2020 06:02
how to list and remove windows pre installed Windows apps

Get-AppxPackage | Select Name, PackageFullName
Get-AppxPackage PackageFullName | Remove-AppxPackage