-
Notifications
You must be signed in to change notification settings - Fork 11
Fix Windows dissector install instructions #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -20,9 +20,17 @@ cp stagelinq.lua ~/.local/lib/wireshark/plugins/ | |||||||||
| ``` | ||||||||||
|
|
||||||||||
| ### Windows | ||||||||||
| Copy `stagelinq.lua` to: | ||||||||||
|
|
||||||||||
| From Command Prompt: | ||||||||||
| ```cmd | ||||||||||
| mkdir "%APPDATA%\Wireshark\plugins" | ||||||||||
| copy stagelinq.lua "%APPDATA%\Wireshark\plugins\" | ||||||||||
| ``` | ||||||||||
| %APPDATA%\Wireshark\plugins\ | ||||||||||
|
|
||||||||||
| From PowerShell: | ||||||||||
| ```powershell | ||||||||||
| New-Item -ItemType Directory -Force -Path "$env:APPDATA\Wireshark\plugins" | ||||||||||
| Copy-Item stagelinq.lua "$env:APPDATA\Wireshark\plugins\" | ||||||||||
|
Comment on lines
+32
to
+33
|
||||||||||
| New-Item -ItemType Directory -Force -Path "$env:APPDATA\Wireshark\plugins" | |
| Copy-Item stagelinq.lua "$env:APPDATA\Wireshark\plugins\" | |
| New-Item -ItemType Directory -Force -Path "$env:APPDATA\Wireshark\plugins" | Out-Null | |
| Copy-Item stagelinq.lua "$env:APPDATA\Wireshark\plugins\" -Force |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
copywill prompt on overwrite in some scenarios, andmkdirwill emit an “already exists” message when re-running the instructions. Consider making the Command Prompt steps explicitly idempotent (e.g., guard the mkdir withif not exist ...and usecopy /Yif overwriting is acceptable) to avoid interactive prompts and reduce confusion when users rerun the steps.