Friday, January 24, 2020

Windows update on Windows Terminal server (Powershell)

This is done on a core server 2016
in powershell

Install print services:

install-windowsfeature print-services

enable the print spooler:

set-service spooler -startuptype automatic

start the print spooler:
net start spooler

if you can't pint the print server, you may have to tweak the domain firewall. Or turn it off with:

set-netfirewallprofile -profile domain -enabled false

Then manage the printers through another server that runs a GUI because you're not a complete masochist.

No comments:

Post a Comment

ModuleNotFoundError: No module named 'torchvision.transforms.functional_tensor'

 I tried a couple things, downgrading, reinstalling, followed some github links talking about /usr/local/lib/python3.10/dist-packages/basics...