@@ -23,6 +23,13 @@ The main goal of the project is to create a well-organized repository with tools
2323 - ** Requirements** : Word Application.
2424- ** Convert-PDF-To-Docx.ps1** : Exports PDF files to .docx files.
2525 - ** Requirements** : Word Application.
26+ - ** Convert-Docx-To-HTML.ps1** : Converts .docx files to HTML files.
27+ - ** Requirements** : Word Application.
28+ - ** Convert-HTML-To-Docx.ps1** : Converts HTML files to .docx files.
29+ - ** Requirements** : Word Application.
30+ - ** Convert-CSV-To-Excel.ps1** : Converts CSV files to Excel (.xlsx) files.
31+ - ** Convert-Excel-To-CSV.ps1** : Converts Excel (.xlsx) files to CSV files.
32+ - ** Convert-Video-To-MP4.ps1** : Converts video files to MP4 format.
2633
2734### Security and Passwords
2835- ** Decrypt-Password.ps1** : Decrypts a password stored in ".\Password.txt" and outputs the result in clear text.
@@ -52,6 +59,7 @@ The main goal of the project is to create a well-organized repository with tools
5259### Compression and Formatting
5360- ** UltraCompress-File.ps1** : Compresses the specified file to a .zip with the highest compression allowed in PowerShell.
5461- ** Format-XML.ps1** : Formats an XML document to make it easier to view, with file selection functionality using the file explorer.
62+ - ** Extract-Files.ps1** : Extracts files from a specified archive (e.g., .zip, .rar) to a target directory.
5563
5664## How to Use
5765
@@ -96,6 +104,21 @@ The main goal of the project is to create a well-organized repository with tools
96104
97105 - [Set-ExecutionPolicy](https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-executionpolicy?view=powershell-7.4)
98106
107+ - **Module or Assembly not found**
108+ - Description: This error indicates that the script is trying to load a module or assembly that is not installed on your system.
109+ - **Solution**: Install the required module or assembly. For example, to install a missing PowerShell module:
110+ ```powershell
111+ Install-Module -Name ModuleName
112+ ```
113+
114+ ```powershell
115+ Add-Type -AssemblyName "AssemblyName"
116+ ```
117+
118+ - **Syntax Errors**
119+ - Description: These errors occur due to incorrect syntax or commands in the script.
120+ - Solution: Review the script for syntax errors and ensure commands are correctly written and used.
121+
99122
100123## Contributing
101124Contributions to enhance the repository or address issues are welcome. Please open a GitHub issue or submit a pull request.
0 commit comments