fixed info
This commit is contained in:
parent
010d75c7b4
commit
73fe281402
@ -15,18 +15,18 @@ This Python script extracts the DLL dependencies of a Windows executable file an
|
|||||||
## Installation
|
## Installation
|
||||||
Install the required Python library:
|
Install the required Python library:
|
||||||
```bash
|
```bash
|
||||||
pip install pefile
|
pip install -r requirements.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
Run the script with the path to an executable file as an argument:
|
Run the script with the path to an executable file as an argument:
|
||||||
```bash
|
```bash
|
||||||
python get_dll_dependencies.py <path_to_exe>
|
python main.py
|
||||||
```
|
```
|
||||||
|
|
||||||
### Example
|
### Example
|
||||||
```bash
|
```bash
|
||||||
python get_dll_dependencies.py my_program.exe
|
python main.py
|
||||||
```
|
```
|
||||||
Output:
|
Output:
|
||||||
```
|
```
|
||||||
@ -39,7 +39,6 @@ Non-OS DLL Dependencies:
|
|||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
- The script assumes the executable is a valid PE (Portable Executable) file.
|
- The script assumes the executable is a valid PE (Portable Executable) file.
|
||||||
- It gracefully handles errors such as missing files or invalid PE formats.
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||
This project is open-source and available under the MIT License.
|
This project is open-source and available under the MIT License.
|
||||||
|
@ -1 +1,2 @@
|
|||||||
pefile
|
pefile
|
||||||
|
shutil
|
Loading…
Reference in New Issue
Block a user