This module provides functions of dealing with Commodore floppy disk images
To be done.
You need powershell 7.3 or newer https://github.com/PowerShell/PowerShell/releases
To find where PowerShell modules are stored, use the following command in your PowerShell terminal:
$env:PSModulePathThis will output a list of directories that PowerShell uses to search for modules.
Copy the folder containing the PowerShell module to one of the directories listed in $PSModulePath. You can copy the module folder manually or via command line. Below are the steps for each operating system.
-
Locate the
$PSModulePathdirectories: On Windows, common module locations are:C:\Program Files\WindowsPowerShell\Modules\C:\Users\<YourUsername>\Documents\WindowsPowerShell\Modules\
-
Copy the module folder: Copy the module folder "FloppyDiskImageTool" to one of the directories listed above.
-
Verify the installation: To verify that the module was installed correctly, run the following command in PowerShell:
Get-Module -ListAvailable FloppyDiskImageTool
-
Locate the
$PSModulePathdirectories: On macOS, common module locations are:/usr/local/microsoft/powershell/7/Modules/~/.local/share/powershell/Modules/
-
Copy the module folder: Copy the module folder "FloppyDiskImageTool" to one of the directories listed above.
-
Verify the installation: To verify that the module was installed correctly, run the following command in PowerShell:
Get-Module -ListAvailable FloppyDiskImageTool
-
Locate the
$PSModulePathdirectories: On Linux, common module locations are:/usr/local/microsoft/powershell/7/Modules/~/.local/share/powershell/Modules/
-
Copy the module folder: Copy the module folder "FloppyDiskImageTool" to one of the directories listed above.
-
Verify the installation: To verify that the module was installed correctly, run the following command in PowerShell:
Get-Module -ListAvailable FloppyDiskImageTool
`Get-Command -Module FloppyDiskImageTool`
will list you all Commands this module provides.
`Get-Help Convert-Floppydiskimage -Full`
will show the documentation for one command, in this case *Convert-Floppydiskimage*