You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: LabTech.psm1
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -33,14 +33,14 @@
33
33
Purpose/Change: Added Update-LTService function
34
34
35
35
Update Date: 2/26/2019
36
-
Purpose/Change: Update to support 32-bit execution in 64-bit without SYSNATIVE redirection
36
+
Purpose/Change: Update to support 32-bit execution in 64-bit OS without SYSNATIVE redirection
37
37
#>
38
38
39
39
if (-not ($PSVersionTable)) {Write-Warning'PS1 Detected. PowerShell Version 2.0 or higher is required.';return}
40
40
if (-not ($PSVersionTable) -or$PSVersionTable.PSVersion.Major-lt3 ) {Write-Verbose'PS2 Detected. PowerShell Version 3.0 or higher may be required for full functionality.'}
41
41
42
42
#Module Version
43
-
$ModuleVersion="1.5"
43
+
$ModuleVersion="1.6"
44
44
45
45
If ($env:PROCESSOR_ARCHITEW6432-match'64'-and [IntPtr]::Size -ne8) {
46
46
Write-Warning'32-bit PowerShell session detected on 64-bit OS. Attempting to launch 64-Bit session to process commands.'
0 commit comments