-- -----------------------------------------------------------------------------------------------------
cd /d C:\vs12projects\PublicDnsWSA
"C:\Program Files (x86)\Windows Kits\8.1\Debuggers\x64\cdb.exe" -d -p 1428
-- -----------------------------------------------------------------------------------------------------


-- auto activate server registry
-- -----------------------------------------------------------------------------------------------------
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\dns.exe
Debugger   REG_SZ
"C:\Program Files (x86)\Windows Kits\8.1\Debuggers\x64\ntsd.exe" -server npipe:pipe=$dnsdbg$ -noio
Debugger   REG_SZ
C:\vs12projects\PublicDnsWSA\x64\Win8.1Debug\DnsDbgLauncher.exe
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control
ServicesPipeTimeout DWORD
86400000 -- 24 hours
-- -----------------------------------------------------------------------------------------------------
-- activate client
-- -----------------------------------------------------------------------------------------------------
net stop dns
net start dns
-- -----------------------------------------------------------------------------------------------------
"C:\Program Files (x86)\Windows Kits\8.1\Debuggers\x64\windbg.exe" -remote npipe:server=rtsdd-server,pipe=$dnsdbg$
-- -----------------------------------------------------------------------------------------------------

Enabling Postmortem Debugging
-- -----------------------------------------------------------------------------------------------------
HKLM\Software\Microsoft\Windows NT\CurrentVersion\AeDebug
Debugger   REG_SZ
"C:\Program Files (x86)\Windows Kits\8.1\Debuggers\x64\ntsd.exe" -server npipe:pipe=$AeDebug$ -noio -p %ld -e %ld
Auto       REG_SZ
0 -- Dialog Box
-- -----------------------------------------------------------------------------------------------------
"C:\Program Files (x86)\Windows Kits\8.1\Debuggers\x64\windbg.exe" -remote npipe:server=rtsdd-server,pipe=$AeDebug$
-- -----------------------------------------------------------------------------------------------------

-- -----------------------------------------------------------------------------------------------------
cd /d C:\vs12projects\PublicDnsWSA\PublicDndWsWix\bin\x64\Debug
"C:\Program Files (x86)\WiX Toolset v4.0\bin\dark.exe" -?
-- -----------------------------------------------------------------------------------------------------
WiX Toolset Decompiler version 4.0.2220.0
Copyright (c) Outercurve Foundation. All rights reserved.

 usage: dark.exe [-?] [-nologo] database.msi [source.wxs] [@responseFile]

   -ext <extension>  extension assembly or "class, assembly"
   -nologo    skip printing dark logo information
   -notidy    do not delete temporary files (useful for debugging)
   -o[ut]     specify output file (default: write .wxs to current directory)
   -sct       suppress decompiling custom tables
   -sdet      suppress dropping empty tables (adds EnsureTable as appropriate)
   -sras      suppress relative action sequencing
              (use explicit sequence numbers)
   -sui       suppress decompiling UI-related tables
   -sw[N]     suppress all warnings or a specific message ID
              (example: -sw1059 -sw1067)
   -swall     suppress all warnings (deprecated)
   -v         verbose output
   -wx[N]     treat all warnings or a specific message ID as an error
              (example: -wx1059 -wx1067)
   -wxall     treat all warnings as errors (deprecated)
   -x <path>  export binaries from cabinets and embedded binaries to <path>
   -xo        output wixout instead of WiX source code
              (mandatory for transforms and patches)
   -? | -help this help information

Environment variables:
   WIX_TEMP   overrides the temporary directory used for cab extraction, binary extraction, ...

For more information see: http://wixtoolset.org/
-- -----------------------------------------------------------------------------------------------------
"C:\Program Files (x86)\WiX Toolset v4.0\bin\dark.exe" -nologo PublicDndWsWix.msi PublicDndWsWix.wxs
-- -----------------------------------------------------------------------------------------------------
