Re: Windows Server 2016 - problem z pulpitem zdalnym
Rozwiązałem problem
handel bierze drukarkę domyślną z klucza rejestru wystarczy po zalogowaniu uruchomić skrypt vbs
kopiujący ten klucz rejestru i potem uruchomić handel
rozwiązanie można znaleźć tu:
https://www.itninja.com/question/copy-key-from-registryuruchamia się z linii poleceń tak:
cscript defprint.vbs
skrypt (plik defprint.vbs) wygląda tak:
Option Explicit
On Error Resume Next
Const HKCU = &H80000001
Dim strComputer, objReg, strOrigPath, strNewPath, arrKeys, strKey, strPrinter
strComputer = "."
Set objReg = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & _
strComputer & "\root\default:StdRegProv")
strOrigPath = "Software\Microsoft\Windows NT\CurrentVersion\Windows\SessionDefaultDevices"
strNewPath = "Software\Microsoft\Windows NT\CurrentVersion\Windows"
objReg.EnumKey HKCU, strOrigPath, arrKeys
For Each strKey In arrKeys
objReg.GetStringValue HKCU, strOrigPath & "\" & strKey, "Device", strPrinter
If strPrinter <> vbNull Then
objReg.SetStringValue HKCU, strNewPath, "Device", strPrinter
End If
Next
Set strComputer = Nothing
Set objReg = Nothing
Set strOrigPath = Nothing
Set strNewPath = Nothing
Set arrKeys = Nothing
Set strKey = Nothing
Set strPrinter = Nothing