meta data for this page
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| windows:virtualbox:start [2026/06/08 22:14] – removed - external edit (Unknown date) 127.0.0.1 | windows:virtualbox:start [2026/06/08 22:14] (current) – ↷ Page moved from os:windows:virtualbox:start to windows:virtualbox:start kilroy | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Virtualbox ====== | ||
| + | |||
| + | ===== Raw disk access to partition ===== | ||
| + | |||
| + | |||
| + | < | ||
| + | # @Elevated command prompt | ||
| + | .\VBoxManage internalcommands listpartitions -rawdisk " | ||
| + | .\VBoxManage internalcommands createrawvmdk -filename D: | ||
| + | </ | ||
| + | |||
| + | ===== VirtualKD ===== | ||
| + | |||
| + | < | ||
| + | .\VBoxManage.exe setextradata " | ||
| + | |||
| + | </ | ||
| + | |||
| + | ===== Paravirtualized debugging ===== | ||
| + | |||
| + | < | ||
| + | # https:// | ||
| + | # https:// | ||
| + | |||
| + | | ||
| + | kdvm.dll | ||
| + | |||
| + | VBoxManage modifyvm "VM name" --paravirtdebug " | ||
| + | |||
| + | |||
| + | VBoxManage modifyvm "VM name" --paravirtdebug " | ||
| + | |||
| + | netsh int ip set address "local area connection" | ||
| + | |||
| + | bcdedit /set loadoptions host_ip=5.5.5.5, | ||
| + | bcdedit /set dbgtransport kdvm.dll | ||
| + | |||
| + | bcdedit /set debug on | ||
| + | # bcdedit /set bootdebug on ##win8+ | ||
| + | # bcdedit /set {bootmgr} bootdebug on | ||
| + | |||
| + | C: | ||
| + | ncryption_key=" | ||
| + | </ | ||
| + | |||
| + | |||
| + | < | ||
| + | netsh interface ipv4 set address name=" | ||
| + | bcdedit /set loadoptions host_ip=5.5.5.5, | ||
| + | bcdedit /set dbgtransport kdvm.dll | ||
| + | bcdedit /set debug on | ||
| + | |||
| + | netsh interface ipv4 set address name=" | ||
| + | bcdedit /set loadoptions host_ip=5.5.5.5, | ||
| + | bcdedit /set dbgtransport kdvm.dll | ||
| + | bcdedit /set debug on | ||
| + | VBoxManage modifyvm " | ||
| + | |||
| + | netsh interface ipv4 set address name=" | ||
| + | bcdedit /set loadoptions host_ip=5.5.5.5, | ||
| + | bcdedit /set dbgtransport kdvm.dll | ||
| + | VBoxManage modifyvm " | ||
| + | bcdedit /set debug on | ||
| + | </ | ||
| + | |||
| + | |||
| + | ===== Toolz ===== | ||
| + | |||
| + | < | ||
| + | Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString(' | ||
| + | choco feature enable -n allowGlobalConfirmation | ||
| + | choco install visualcpp-build-tools --params "'/ | ||
| + | choco install visualcpp-build-tools --version 14.0.25420.1 | ||
| + | choco install notepadplusplus.install nasm hxd totalcommander windbg ida-free | ||
| + | choco install mingw patheditor | ||
| + | </ | ||