File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- <#
2- Get-Item 'HKLM:\SOFTWARE\Wow6432node\Microsoft\Microsoft SDKs\Windows\*' | Where-Object { $_.Name -match '[vV]\d+\.\d+$' } | ForEach-Object { 'sdk version: ' + $_.GetValue("ProductVersion"); Get-ChildItem (Join-Path $_.GetValue("InstallationFolder") -ChildPath include | Join-Path -ChildPath '*' | Join-Path -ChildPath 'string.h') -Recurse | ForEach-Object { $_.FullName }; Get-ChildItem (Join-Path $_.GetValue("InstallationFolder") -ChildPath lib | Join-Path -ChildPath '*' | Join-Path -ChildPath 'user32.lib') -Recurse | ForEach-Object { $_.FullName }; };
3-
4- Get-Item 'HKLM:\SOFTWARE\Microsoft\Microsoft SDKs\Windows\*' | Where-Object { $_.Name -match '[vV]\d+\.\d+$' } | ForEach-Object { Get-ChildItem (Join-Path $_.GetValue("InstallationFolder") -ChildPath include | Join-Path -ChildPath '*' | Join-Path -ChildPath 'string.h') -Recurse | ForEach-Object { $_.FullName }; Get-ChildItem (Join-Path $_.GetValue("InstallationFolder") -ChildPath lib | Join-Path -ChildPath '*' | Join-Path -ChildPath 'user32.lib') -Recurse | ForEach-Object { $_.FullName }; };
5- #>
6-
71$console = ' LuaInstaller.Console\bin\Release\LuaInstaller.Console.exe' ;
82
93$infoCommands = ' /?' ,
You can’t perform that action at this time.
0 commit comments