Platform Toolset | devenv | working? | compiler version (from Rich Header) | depends msvcr | ucrtbased | depends vcruntime | supports retarget to 8.1 / 10 SDKs |
---|---|---|---|---|---|---|---|
Windows7.1SDK | VS 2017 RC1 | YES | VS2010 build 30319 | 100D | No | No | No |
Visual Studio 2017 (v141) | VS 2017 RC1 | NO - build fails, seems to require Windows SDK 8.1 or 10 (not possible on Win 7?) | N/A | N/A | N/A | N/A | Yes |
Visual Studio 2017 (v141) | VS 20 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#$proclist = get-wmiobject -Class win32_process | select -last 50 | |
$proclist = get-wmiobject -Class win32_process | |
foreach ($proc in $proclist) { | |
$userinfo = Invoke-WmiMethod -InputObject $proc -Name GetOwner | |
$userstring = "$($userinfo.Domain)\$($userinfo.User)" | |
if ($userstring -eq "\") {$userstring = ""} | |
Add-Member -InputObject $proc -Name User -Value $userstring -MemberType NoteProperty | |
} | |
$proclist | select ProcessId, User, name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<ADLMCUSTOMENV VERSION="1.0.0.0"> | |
<PLATFORM OS="Windows"> | |
<KEY ID="ADLM_COMMON_BIN_LOCATION"> | |
<!--Path to the AdLM shared executables--> | |
<STRING><path to maya netinstall>\adlm\R14\Program Files\Common Files\Autodesk Shared\Adlm\R14</STRING> | |
</KEY> | |
<KEY ID="ADLM_COMMON_LIB_LOCATION"> | |
<!--Path to the AdLM shared libraries--> | |
<STRING><path to maya netinstall>\adlm\R14\Program Files\Common Files\Autodesk Shared\Adlm\R14</STRING> |
NewerOlder