This file has been truncated, but you can view the full file.
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
| Log file open, 03/30/26 14:00:47 | |
| LogInit: Display: Running engine for game: FactoryGame | |
| LogInit: Display: Project file not found: /home/steam/SatisfactoryDedicatedServer/FactoryGame/FactoryGame.uproject | |
| LogInit: Display: Attempting to find via project info helper. | |
| LogPakFile: Initializing PakPlatformFile | |
| LogIoDispatcher: Display: Reading toc: ../../../FactoryGame/Content/Paks/global.utoc | |
| LogIoDispatcher: Display: Toc loaded : ../../../FactoryGame/Content/Paks/global.utoc, Id=ffffffffffffffff, Order=0, EntryCount=1, SignatureHash=F24E3CF6132C7CBEEE87A71CFD0FDCF5C3D29174 | |
| LogIoDispatcher: Display: Mounting container '../../../FactoryGame/Content/Paks/global.utoc' in location slot 0 | |
| LogPakFile: Display: Initialized I/O dispatcher file backend. Mounted the global container: ../../../FactoryGame/Content/Paks/global.utoc | |
| LogPakFile: Display: Found Pak file ../../../FactoryGame/Content/Paks/FactoryGame-LinuxServer.pak attempting to mount. |
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
| PS C:\> $domainDS = Resolve-DnsName -Name 'org.' -Type 'DS' -Server '1.1.1.1' -DnssecOk | |
| PS C:\> $domainDS | |
| Name Type TTL Section KeyTa Algorithm DTyp Digest | |
| g e | |
| ---- ---- --- ------- ----- --------- ---- ------ | |
| org DS 83825 Answer 26974 8 2 {79, 237, 226, 148...} | |
| Name : org | |
| QueryType : RRSIG |
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
| PS C:\> $rootDNSKEY = Resolve-DnsName -Name '.' -Server '1.1.1.1' -Type 'DNSKEY' -DnssecOk | |
| PS C:\> $rootDNSKEY | |
| Name Type TTL Section Flags Protocol Algorithm Key | |
| ---- ---- --- ------- ----- -------- --------- --- | |
| . DNSKEY 85735 Answer 257 DNSSEC 8 {3, 1, 0, 1...} | |
| . DNSKEY 85735 Answer 256 DNSSEC 8 {3, 1, 0, 1...} | |
| . DNSKEY 85735 Answer 256 DNSSEC 8 {3, 1, 0, 1...} | |
| Name : . |
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
| using module PSKoans | |
| [Koan(Position = 308)] | |
| param() | |
| <# | |
| Error Handling in PowerShell | |
| PowerShell handles errors via the instances of the System.Management.Automation.ErrorRecord class. | |
| Each ErrorRecord object contains all the information available about an error. |