Miciuleinen Posted December 3, 2015 Report post Posted December 3, 2015 Hello, I am trying to deploy CMTrace as part of the TS (SCCM 2012 SP1, no MDT integration) and also set it as default log viewer. This is my powershell script: $RelativePath = (split-path $SCRIPT:MyInvocation.MyCommand.Path -parent)+"\" Copy-Item -Path $RelativePath"CMTrace.exe" -Destination "c:\temp\" -Force xcopy "c:\temp\CMtrace.exe" "c:\windows\System32" /y xcopy "c:\temp\CMtrace.exe" "c:\windows\SYSWOW64" /y $CMtraceKey = "HKCU:\SOFTWARE\Microsoft\Trace32" Set-ItemProperty -Path $CMtraceKey -Name "Register File Types" -Value 00000000 $Parameters = "assoc .log=logfile" cmd.exe /c $Parameters The xcopy commands do not work for some reason, and smsts log doesn't show me anything. Can somebody advise on why the copy commands do not work and how can I apply the HKCU key properly ? Thanks 1 Quote Share this post Link to post Share on other sites More sharing options...
0 Miciuleinen Posted December 3, 2015 Report post Posted December 3, 2015 I have found a partial solution. For copying I needed to use sysnative instead of system32, to avoid folder redirection. Also with the help from this blog I have found how to properly set file association. One more thing missing, how to set the HKCU reg key properly, because now cmtrace asks if it is default viewer every time it gets opened. Thanks Quote Share this post Link to post Share on other sites More sharing options...
0 Deilson Oliveira Posted December 4, 2020 Report post Posted December 4, 2020 On 12/3/2015 at 11:56 AM, Miciuleinen said: I have found a partial solution. For copying I needed to use sysnative instead of system32, to avoid folder redirection. Also with the help from this blog I have found how to properly set file association. One more thing missing, how to set the HKCU reg key properly, because now cmtrace asks if it is default viewer every time it gets opened. Thanks It would be much more useful if you could share the script here if you succeeded! Quote Share this post Link to post Share on other sites More sharing options...
0 Deilson Oliveira Posted November 2, 2021 Report post Posted November 2, 2021 On 12/3/2015 at 8:58 AM, Miciuleinen said: Hello, I am trying to deploy CMTrace as part of the TS (SCCM 2012 SP1, no MDT integration) and also set it as default log viewer. This is my powershell script: $RelativePath = (split-path $SCRIPT:MyInvocation.MyCommand.Path -parent)+"\" Copy-Item -Path $RelativePath"CMTrace.exe" -Destination "c:\temp\" -Force xcopy "c:\temp\CMtrace.exe" "c:\windows\System32" /y xcopy "c:\temp\CMtrace.exe" "c:\windows\SYSWOW64" /y $CMtraceKey = "HKCU:\SOFTWARE\Microsoft\Trace32" Set-ItemProperty -Path $CMtraceKey -Name "Register File Types" -Value 00000000 $Parameters = "assoc .log=logfile" cmd.exe /c $Parameters The xcopy commands do not work for some reason, and smsts log doesn't show me anything. Can somebody advise on why the copy commands do not work and how can I apply the HKCU key properly ? Thanks In a task sequence, would this be applied before or after the "Apply Operating System Image" ? Quote Share this post Link to post Share on other sites More sharing options...
Hello,
I am trying to deploy CMTrace as part of the TS (SCCM 2012 SP1, no MDT integration) and also set it as default log viewer.
This is my powershell script:
$RelativePath = (split-path $SCRIPT:MyInvocation.MyCommand.Path -parent)+"\"
Copy-Item -Path $RelativePath"CMTrace.exe" -Destination "c:\temp\" -Force
xcopy "c:\temp\CMtrace.exe" "c:\windows\System32" /y
xcopy "c:\temp\CMtrace.exe" "c:\windows\SYSWOW64" /y
$CMtraceKey = "HKCU:\SOFTWARE\Microsoft\Trace32"
Set-ItemProperty -Path $CMtraceKey -Name "Register File Types" -Value 00000000
$Parameters = "assoc .log=logfile"
cmd.exe /c $Parameters
The xcopy commands do not work for some reason, and smsts log doesn't show me anything.
Can somebody advise on why the copy commands do not work and how can I apply the HKCU key properly ?
Thanks
Share this post
Link to post
Share on other sites