Skip to content

Instantly share code, notes, and snippets.

View sergiorykov's full-sized avatar
💭
🐲

Sergio Rykov sergiorykov

💭
🐲
View GitHub Profile
@matijagrcic
matijagrcic / _NT_SYMBOL_PATH
Last active January 10, 2019 00:34
Process Explorer and WinDbg
#for VS
_NT_SYMBOL_PATH
SRV*C:\SYMBOLS\PUBLIC*http://referencesource.microsoft.com/symbols;SRV*C:\SYMBOLS\PUBLIC*https://msdl.microsoft.com/download/symbols
#for Process Explorer
"C:\Program Files\Windows Kits\10\Debuggers\x64\symstore" add /f "PATHTOYURPDBs\*.pdb" /s "C:\SYMBOLS\PUBLIC" /t NAME
#for Process Explorer
C:\Program Files\Windows Kits\10\Debuggers\x64\dbghelp.dll
SRV*C:\SYMBOLS\PUBLIC*http://referencesource.microsoft.com/symbols;SRV*C:\SYMBOLS\PUBLIC*https://msdl.microsoft.com/download/symbols
@yetanotherchris
yetanotherchris / enable-iis-windows-10.ps1
Created May 21, 2016 17:36
Powershell script to enable all IIS, MSMQ and WCF features on Windows 8 and 10.
Import-Module Dism
Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole
Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServer
Enable-WindowsOptionalFeature -Online -FeatureName IIS-CommonHttpFeatures
Enable-WindowsOptionalFeature -Online -FeatureName IIS-HttpErrors
Enable-WindowsOptionalFeature -Online -FeatureName IIS-HttpRedirect
Enable-WindowsOptionalFeature -Online -FeatureName IIS-ApplicationDevelopment
Enable-WindowsOptionalFeature -Online -FeatureName IIS-NetFxExtensibility
Enable-WindowsOptionalFeature -Online -FeatureName IIS-NetFxExtensibility45
Enable-WindowsOptionalFeature -Online -FeatureName IIS-HealthAndDiagnostics
@davidfowl
davidfowl / dotnetlayout.md
Last active June 3, 2024 01:07
.NET project structure
$/
  artifacts/
  build/
  docs/
  lib/
  packages/
  samples/
  src/
 tests/