PS: Behavior of Environment Variable Prioritization

Priority handling when there are conflicting and/or same variables at both Machine and User level: PS C:> $a = [Environment]::GetEnvironmentVariable("Temp","Machine") PS C:> echo $a C:WindowsTEMP PS C:> $a = [Environment]::GetEnvironmentVariable("Temp","User") PS C:> echo $a C:UsersgovardhanAppDataLocalTemp PS C:> $a = [Environment]::GetEnvironmentVariable("Temp") PS C:> echo $a C:UsersGOVARD~1AppDataLocalTemp PS C:> In case of a conflict, Windows and thus PS refers to User level variable under a user session.   The weird behavior is sometimes, you environment variables aren’t read as either type “User” or “Machine” but can be read without any type specification. PS C:> $a = [Environment]::GetEnvironmentVariable("appdata","User") PS C:> echo $a PS […]

Read more

Adobe Flash Updates Install Behavior When Installed via LANDesk

…found to be almost same on XP and Win7 On Win7 x64-bit: There is no 64 bit Flash for x64bit IE.  Flash Player support on 64-bit operating systems (http://kb2.adobe.com/cps/000/6b3af6c9.html) Adobe Flash Player is not supported for playback in 64-bit browsers. Flash Player will, however, run in a 32-bit browser, running on a 64-bit operating system. Adobe is working on Flash Player support for 64-bit platforms as part of our ongoing commitment to the cross-platform compatibility of Flash Player. We expect to provide native support for 64-bit platforms in an upcoming release of Flash Player following the To run Flash Player […]

Read more