Skip to content

Instantly share code, notes, and snippets.

@MarkTiedemann
Created October 10, 2024 22:28
Show Gist options
  • Save MarkTiedemann/366826ff4bb6854e710a9d5180a46bdd to your computer and use it in GitHub Desktop.
Save MarkTiedemann/366826ff4bb6854e710a9d5180a46bdd to your computer and use it in GitHub Desktop.
[System.Reflection.Assembly]::LoadWithPartialName('System.Drawing') | Out-Null;
$Icon = [System.Drawing.Icon]::ExtractAssociatedIcon(
[System.Environment]::ExpandEnvironmentVariables('%SystemRoot%\System32\newdev.exe')
);
$Stream = [System.IO.File]::Open(
'newdev.ico',
[System.IO.FileMode]::CreateNew
);
$Icon.Save($Stream);
$Stream.Dispose();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment