- Download from the following Mirrors:
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| """ | |
| Converts between QD and FDS disk images | |
| """ | |
| import struct | |
| def create_fds_header(side_count): | |
| return b"FDS\x1A" + bytes([side_count & 0xFF]) + bytes(11) |
This file contains hidden or 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
| ## Hey folks, this is just a quick walkthrough on modifying the trusted hosts property in WSMAN using Powershell | |
| # By default PowerShell loads a PSDrive for the WinRM service | |
| # We modify the trusted hosts property using the Set-Item cmdlet | |
| Set-Item WSMan:\localhost\Client\TrustedHosts -value 192.168.1.13 | |
| #This sets the value to 192.168.1.13, it also overwrites any existing values | |
| # If you want to set a subnet you can use the PowerShell wildcard character | |
| Set-Item WSMan:\localhost\Client\TrustedHosts -value 192.168.1.* |