Skip to content

Commit

Permalink
Add Wireshark install command and add dark mode to Notepad++
Browse files Browse the repository at this point in the history
  • Loading branch information
reuteras committed Jan 21, 2024
1 parent 754505b commit 9bfcefd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions setup/start_sandbox.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@ Write-DateLog "Date and time format set" >> $TEMP\start_sandbox.log
# Dark mode
if ($WSDFIR_DARK -eq "Yes") {
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name AppsUseLightTheme -Value 0
New-Item -Path "$env:USERPROFILE\AppData\Roaming\Notepad++" -ItemType Directory -Force | Out-Null
Copy-Item "$env:USERPROFILE\Documents\tools\configurations\notepad++_dark.xml" "$env:USERPROFILE\AppData\Roaming\Notepad++\config.xml" -Force
Write-DateLog "Dark mode set" >> $TEMP\start_sandbox.log
}

Expand Down
7 changes: 6 additions & 1 deletion setup/utils/dfirws-install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ if ($args.Count -eq 0) {
Write-Output " --ruby"
Write-Output " --rust"
Write-Output " --vscode"
Write-Output " --wireshark"
Write-Output " --x64dbg"
Write-Output " --zui"
exit
Exit
}

if ($args -contains "--apimonitor") {
Expand Down Expand Up @@ -110,6 +111,10 @@ if ($args -contains "--vscode") {
Install-VSCode
}

if ($args -contains "--wireshark") {
Install-Wireshark
}

if ($args -contains "--x64dbg") {
Install-X64dbg
}
Expand Down

0 comments on commit 9bfcefd

Please sign in to comment.