forked from capstone-engine/capstone
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a7f8a4f
commit af38ecc
Showing
1 changed file
with
12 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
# Usage | ||
|
||
Invoke-Capstone is ready for use, there are two options to access the capstone library from PowerShell: | ||
|
||
* Script dot sourcing: | ||
* Script dot sourcing: | ||
|
||
PS C:\> . .\Invoke-Capstone.ps1 | ||
|
||
* PowerShell module directories: | ||
* Adding the script to one of the PowerShell module directories: | ||
|
||
# Global PSModulePath path | ||
%Windir%\System32\WindowsPowerShell\v1.0\Modules | ||
|
||
# User PSModulePath path | ||
%UserProfile%\Documents\WindowsPowerShell\Modules | ||
|
||
# Global PSModulePath path | ||
%Windir%\System32\WindowsPowerShell\v1.0\Modules | ||
# Notes | ||
|
||
# User PSModulePath path | ||
%UserProfile%\Documents\WindowsPowerShell\Modules | ||
Invoke-Capstone drops the Capstone DLL, x32/64 respectively, to the user's temporary folder the first time it runs. |