User Profile
mpd53210
Copper Contributor
Joined 5 years ago
User Widgets
Recent Discussions
MS Teams deployment issues
Hello All, I deploy msi applications via Kace (made by quest) It has been working fine until last month. In my deployment script, I use this command to run the executable ; msiexec.exe /i teams_windows_x64.msi /s I do not know what the problem is, I am using windows 10 pro 21H2 build # 19044.2006 I downloaded above machine-wide-installer version 1.5.0.21668 I can see the "teams" app in "apps & features" window. However, when I sign in to windows, teams app won't automatically show up. Also when I search "team" in the start menu it is not there. any ideas? I thought about maybe a windows update made a change that affected team app. thanks in advance.1.3KViews0likes1Commentwindows 10 deployment and drivers
Hello Guys and Gals. this is not a question for a problem , rather question for behind science. I captured windows 10 pro wim file from existing AIO computer to deploye on another computer. when I captured the image, the computer that I captured it from had hardware drivers installed. and when I deployed the image, it is also installing factory drivers. Should I be concerned about unused drivers that might have carried over from 1st computer? Or is windows 10 or sysprep process smart enough to remove those drivers? thanks in advance and happy new year everyone.782Views0likes1CommentRe: how to change printer port address on windows 7
Hello again. I have the following script. Every time I run it shows me an error. $a=Get-Printer -ComputerName $pcname1 | Where-Object {$_. PortName -like $OldIP} $a.PortName = $NewIP Set-Printer -InputObject $a I get this error The property 'PortName' cannot be found on this object. Verify that the property exists and can be set the error is on line for ($a.PortName = $NewIP) during debug, when I hover on $a I can see properties of $a and it has two printers showing. when I drill down into it, I can see portname has the IP address that I need to change.1.4KViews0likes1Commenthow to change printer port address on windows 7
Hi, I hope you and your family are safe. B.L.M. I am running ps script to change remote pc printer driver port address. this works fine for windows 10. However if the target pc is windows 7 i get "portname" property doesn't exist . The property 'PortName' cannot be found on this object. Verify that the property exists and can be set. any ideas?1.4KViews0likes3Commentsunable to change printer port
Hi team, I am still working on updating printer driver ports . with my power script I was able to add a port, attach it to the printer driver. however, when I look at the ports list for the printer driver shows as not selected . in fact still showing old port selected. Add-PrinterPort -Name "ipaddress" -PrinterHostAddress "ipaddress" -ComputerName "pcname" Get-Printer -ComputerName pcname | Where-Object {$_.PortName -eq "ipaddress"} | Set-Printer -PortName "ipaddress" Remove-PrinterPort -Name "ipaddress"5.3KViews0likes1Comment