localscript/ExampleExportObject.ps1
# https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/new-itemproperty?view=powershell-7.1#:~:text=True-,-PropertyType,-Specifies%20the%20type <# String: Specifies a null-terminated string. Equivalent to REG_SZ. ExpandString: Specifies a null-terminated string that contains unexpanded references to environment variables that are expanded when the value is retrieved. Equivalent to REG_EXPAND_SZ. Binary: Specifies binary data in any form. Equivalent to REG_BINARY. DWord: Specifies a 32-bit binary number. Equivalent to REG_DWORD. MultiString: Specifies an array of null-terminated strings terminated by two null characters. Equivalent to REG_MULTI_SZ. Qword: Specifies a 64-bit binary number. Equivalent to REG_QWORD. Unknown: Indicates an unsupported registry data type, such as REG_RESOURCE_LIST. #> [PSCustomObject]@{ 'RegKey' = 'SOFTWARE\CLASSES\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32' 'Enable' = @{ 'Operation' = 'Set' 'ValueName' = '(Default)' 'ValueData' = $null 'ValueType' = 'String' } 'Disable' = @{ 'Operation' = 'Remove' 'Path' = 'SOFTWARE\CLASSES\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}' } 'Default' = @{ 'Operation' = 'Remove' 'Path' = 'SOFTWARE\CLASSES\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}' } } | ConvertTo-Json | Set-Content -Path './private/data/ClassicContextMenu.json -Encoding utf8' [PSCustomObject]@{ 'RegKey' = 'Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' 'Enable' = @{ 'Operation' = 'New' 'ValueName' = 'HideClock' 'ValueData' = 0 'ValueType' = 'DWORD' } 'Disable' = @{ 'Operation' = 'New' 'ValueName' = 'HideClock' 'ValueData' = 1 'ValueType' = 'DWORD' } } | ConvertTo-Json | Set-Content -Path './private/data/ShowClock.json' -Encoding utf8 function New-JsonObject { Param( $RegKey = 'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced', $Operation = 'New', $ValueName, $ValueType = 'DWORD', $FileName ) [PSCustomObject]@{ 'RegKey' = 'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' 'Enable' = @{ 'Operation' = 'New' 'ValueName' = $ValueName 'ValueData' = 1 'ValueType' = 'DWORD' } 'Disable' = @{ 'Operation' = 'New' 'ValueName' = $ValueName 'ValueData' = 0 'ValueType' = 'DWORD' } } | ConvertTo-Json | Set-Content -Path "./private/data/$FileName.json" -Encoding utf8 -NoNewline } import-csv C:\Users\jcjbr\mycsv.csv | ForEach-Object {New-JsonObject -ValueName $_.Name -FileName $_.CmdletName} [PSCustomObject]@{ Name = 'TaskbarMn' CmdletName = 'TaskbarShowChatIcon' }| ForEach-Object {New-JsonObject -ValueName $_.Name -FileName $_.CmdletName} get-itempropertyvalue 'HKCU:\Software\Microsoft\Windows\CurrentVersion\CloudStore\Store\Cache\DefaultAccount\$$windows.data.lunarcalendar\Current' -name data Get-TaskbarAdditionalCalendar [PSCustomObject]@{ 'RegKey' = 'Software\Microsoft\Windows\CurrentVersion\CloudStore\Store\Cache\DefaultAccount\$$windows.data.lunarcalendar\Current' 'CalendarOption' = @{ 'None' = @{ 'Operation' = 'New' 'ValueName' = 'Data' 'ValueData' = 2,0,0,0,249,166,66,145,68,187,215,1,0,0,0,0,67,66,1,0,16,2,0 'ValueType' = 'Binary' } 'SimplifiedLunar' = @{ 'Operation' = 'New' 'ValueName' = 'Data' 'ValueData' = 2,0,0,0,129,140,84,137,68,187,215,1,0,0,0,0,67,66,1,0,16,4,0 'ValueType' = 'Binary' } 'TraditionalLunar' = @{ 'Operation' = 'New' 'ValueName' = 'Data' 'ValueData' = 2,0,0,0,214,4,84,166,67,187,215,1,0,0,0,0,67,66,1,0,16,6,0 'ValueType' = 'Binary' } } } | ConvertTo-Json -Depth 3 | Set-Content -Path './private/data/TaskbarAdditionalCalendar.json' -Encoding utf8 TaskbarAdditionalCalendar # None 2,0,0,0,249,166,66,145,68,187,215,1,0,0,0,0,67,66,1,0,16,2,0 # Simp 2,0,0,0,129,140,84,137,68,187,215,1,0,0,0,0,67,66,1,0,16,4,0 # Trad 2,0,0,0,214,4,84,166,67,187,215,1,0,0,0,0,67,66,1,0,16,6,0 (get-itempropertyvalue 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Modules\NavPane' -Name ExpandedState) -join ',' | set-clipboard $NetworkPC = '11,0,0,0,22,0,20,0,31,128,203,133,159,103,32,2,128,64,178,155,85,64,204,5,170,182,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,80,224,79,208,32,234,58,105,16,162,216,8,0,43,48,48,157,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,119,209,164,180,178,84,39,64,65,162,235,154,118,217,215,205,198,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,88,13,26,44,240,33,190,80,67,136,176,115,103,252,150,239,60,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,58,0,31,66,102,92,141,1,51,69,7,67,155,83,34,77,226,237,31,230,38,0,1,0,38,0,239,190,49,4,0,0,108,141,251,49,105,14,213,1,107,113,203,171,244,185,215,1,148,52,33,201,245,185,215,1,20,0,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,87,0,85,0,31,0,47,0,16,183,166,245,25,0,47,72,58,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,26,89,94,150,223,211,72,141,103,23,51,188,238,40,186,119,44,251,245,47,14,22,74,163,129,62,86,12,104,188,131,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,184,0,177,0,0,0,0,0,11,83,64,121,16,0,69,65,70,66,126,49,46,123,69,68,0,0,132,0,9,0,4,0,239,190,11,83,64,121,75,83,27,138,46,0,0,0,50,151,5,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,106,67,0,62,216,132,221,46,0,123,0,69,0,68,0,55,0,66,0,65,0,52,0,55,0,48,0,45,0,56,0,69,0,53,0,52,0,45,0,52,0,54,0,53,0,69,0,45,0,56,0,50,0,53,0,67,0,45,0,57,0,57,0,55,0,49,0,50,0,48,0,52,0,51,0,69,0,48,0,49,0,67,0,125,0,0,0,26,0,26,0,0,0,3,0,239,190,112,164,123,237,84,142,94,70,130,92,153,113,32,67,224,28,26,0,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,120,64,240,95,100,129,80,27,16,159,8,0,170,0,47,149,78,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,112,104,6,238,38,10,160,215,68,147,113,190,176,100,201,134,131,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,84,37,72,30,3,148,123,195,77,177,49,233,70,180,76,141,213,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,58,0,31,68,71,26,3,89,114,63,167,68,137,197,85,149,254,107,48,238,38,0,1,0,38,0,239,190,16,0,0,0,222,0,208,19,243,185,215,1,198,117,183,105,202,190,215,1,99,68,66,191,202,190,215,1,20,0,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0' $Network = '11,0,0,0,22,0,20,0,31,128,203,133,159,103,32,2,128,64,178,155,85,64,204,5,170,182,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,80,224,79,208,32,234,58,105,16,162,216,8,0,43,48,48,157,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,119,209,164,180,178,84,39,64,65,162,235,154,118,217,215,205,198,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,88,13,26,44,240,33,190,80,67,136,176,115,103,252,150,239,60,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,58,0,31,66,102,92,141,1,51,69,7,67,155,83,34,77,226,237,31,230,38,0,1,0,38,0,239,190,49,4,0,0,108,141,251,49,105,14,213,1,107,113,203,171,244,185,215,1,148,52,33,201,245,185,215,1,20,0,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,87,0,85,0,31,0,47,0,16,183,166,245,25,0,47,72,58,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,26,89,94,150,223,211,72,141,103,23,51,188,238,40,186,119,44,251,245,47,14,22,74,163,129,62,86,12,104,188,131,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,184,0,177,0,0,0,0,0,11,83,64,121,16,0,69,65,70,66,126,49,46,123,69,68,0,0,132,0,9,0,4,0,239,190,11,83,64,121,75,83,27,138,46,0,0,0,50,151,5,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,106,67,0,62,216,132,221,46,0,123,0,69,0,68,0,55,0,66,0,65,0,52,0,55,0,48,0,45,0,56,0,69,0,53,0,52,0,45,0,52,0,54,0,53,0,69,0,45,0,56,0,50,0,53,0,67,0,45,0,57,0,57,0,55,0,49,0,50,0,48,0,52,0,51,0,69,0,48,0,49,0,67,0,125,0,0,0,26,0,26,0,0,0,3,0,239,190,112,164,123,237,84,142,94,70,130,92,153,113,32,67,224,28,26,0,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,120,64,240,95,100,129,80,27,16,159,8,0,170,0,47,149,78,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,112,104,6,238,38,10,160,215,68,147,113,190,176,100,201,134,131,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,84,37,72,30,3,148,123,195,77,177,49,233,70,180,76,141,213,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,58,0,31,68,71,26,3,89,114,63,167,68,137,197,85,149,254,107,48,238,38,0,1,0,38,0,239,190,16,0,0,0,222,0,208,19,243,185,215,1,198,117,183,105,202,190,215,1,99,68,66,191,202,190,215,1,20,0,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0' $PC = '11,0,0,0,22,0,20,0,31,128,203,133,159,103,32,2,128,64,178,155,85,64,204,5,170,182,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,80,224,79,208,32,234,58,105,16,162,216,8,0,43,48,48,157,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,119,209,164,180,178,84,39,64,65,162,235,154,118,217,215,205,198,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,88,13,26,44,240,33,190,80,67,136,176,115,103,252,150,239,60,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,58,0,31,66,102,92,141,1,51,69,7,67,155,83,34,77,226,237,31,230,38,0,1,0,38,0,239,190,49,4,0,0,108,141,251,49,105,14,213,1,107,113,203,171,244,185,215,1,148,52,33,201,245,185,215,1,20,0,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,87,0,85,0,31,0,47,0,16,183,166,245,25,0,47,72,58,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,26,89,94,150,223,211,72,141,103,23,51,188,238,40,186,119,44,251,245,47,14,22,74,163,129,62,86,12,104,188,131,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,184,0,177,0,0,0,0,0,11,83,64,121,16,0,69,65,70,66,126,49,46,123,69,68,0,0,132,0,9,0,4,0,239,190,11,83,64,121,75,83,27,138,46,0,0,0,50,151,5,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,106,67,0,62,216,132,221,46,0,123,0,69,0,68,0,55,0,66,0,65,0,52,0,55,0,48,0,45,0,56,0,69,0,53,0,52,0,45,0,52,0,54,0,53,0,69,0,45,0,56,0,50,0,53,0,67,0,45,0,57,0,57,0,55,0,49,0,50,0,48,0,52,0,51,0,69,0,48,0,49,0,67,0,125,0,0,0,26,0,26,0,0,0,3,0,239,190,112,164,123,237,84,142,94,70,130,92,153,113,32,67,224,28,26,0,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,120,64,240,95,100,129,80,27,16,159,8,0,170,0,47,149,78,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,112,104,6,238,38,10,160,215,68,147,113,190,176,100,201,134,131,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,84,37,72,30,3,148,123,195,77,177,49,233,70,180,76,141,213,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,58,0,31,68,71,26,3,89,114,63,167,68,137,197,85,149,254,107,48,238,38,0,1,0,38,0,239,190,16,0,0,0,222,0,208,19,243,185,215,1,198,117,183,105,202,190,215,1,99,68,66,191,202,190,215,1,20,0,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0' $None = '11,0,0,0,22,0,20,0,31,128,203,133,159,103,32,2,128,64,178,155,85,64,204,5,170,182,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,80,224,79,208,32,234,58,105,16,162,216,8,0,43,48,48,157,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,119,209,164,180,178,84,39,64,65,162,235,154,118,217,215,205,198,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,88,13,26,44,240,33,190,80,67,136,176,115,103,252,150,239,60,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,58,0,31,66,102,92,141,1,51,69,7,67,155,83,34,77,226,237,31,230,38,0,1,0,38,0,239,190,49,4,0,0,108,141,251,49,105,14,213,1,107,113,203,171,244,185,215,1,148,52,33,201,245,185,215,1,20,0,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,255,255,0,0,0,0,0,0,0,0,0,0,87,0,85,0,31,0,47,0,16,183,166,245,25,0,47,72,58,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,26,89,94,150,223,211,72,141,103,23,51,188,238,40,186,119,44,251,245,47,14,22,74,163,129,62,86,12,104,188,131,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,184,0,177,0,0,0,0,0,11,83,64,121,16,0,69,65,70,66,126,49,46,123,69,68,0,0,132,0,9,0,4,0,239,190,11,83,64,121,75,83,27,138,46,0,0,0,50,151,5,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,106,67,0,62,216,132,221,46,0,123,0,69,0,68,0,55,0,66,0,65,0,52,0,55,0,48,0,45,0,56,0,69,0,53,0,52,0,45,0,52,0,54,0,53,0,69,0,45,0,56,0,50,0,53,0,67,0,45,0,57,0,57,0,55,0,49,0,50,0,48,0,52,0,51,0,69,0,48,0,49,0,67,0,125,0,0,0,26,0,26,0,0,0,3,0,239,190,112,164,123,237,84,142,94,70,130,92,153,113,32,67,224,28,26,0,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,120,64,240,95,100,129,80,27,16,159,8,0,170,0,47,149,78,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,112,104,6,238,38,10,160,215,68,147,113,190,176,100,201,134,131,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,20,0,31,84,37,72,30,3,148,123,195,77,177,49,233,70,180,76,141,213,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,58,0,31,68,71,26,3,89,114,63,167,68,137,197,85,149,254,107,48,238,38,0,1,0,38,0,239,190,16,0,0,0,222,0,208,19,243,185,215,1,198,117,183,105,202,190,215,1,99,68,66,191,202,190,215,1,20,0,0,0,1,0,0,0,77,0,0,0,28,0,0,0,49,83,80,83,166,106,99,40,61,149,210,17,181,214,0,192,79,217,24,208,0,0,0,0,45,0,0,0,49,83,80,83,53,126,199,119,227,27,80,67,164,140,117,99,215,39,119,109,17,0,0,0,2,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0' $networkpc -eq $pc import-csv C:\Users\jcjbr\newsettings.csv | ForEach-Object {New-JsonObject -ValueName $_.Name -FileName $_.CmdletName} Get-ChildItem ./private/data | % { ($_ | Get-Content -Raw) | Set-Content -Path $_.FullName -Encoding utf8 -NoNewline } |