This is the command I'm using and I'm actually just trying to make it a script so I can use SCCM to uninstall the software from a device collection I built. msiexec /x {[Acrobat.exe | AC76BA86-1033-FFFF-7760-00
Finding collection membership for a specific device with Powershell Script Folder size report for spcific device collection Free Disk Space Reporting Full Removal of SCCM agent Get Application ID Get Local Admin members from Workstations Get PS Script Output from SCCM Configuration Item? Hardware Inve...
Add-SccmDeviceToCollection Add a computer to a device collection for application deployment Add-SccmUserToCollection Add a domain user to a user collection for application deployment. New-SccmApplication Creates a new SCCM application. Remove-SccmApplication ...
#需要安装SCCM的PowerShell模块 Import-ModuleConfigurationManager #替换以下变量 $SiteCode=S01#SCCM站点代码 $BoundaryGroupName=边界组1#边界组名称 $BoundaryNameToAdd=子网10.0.0.0#新的边界名称 $BoundaryNameToRemove=子网10.1.0.0#要移除的边界名称 #获取边界组对象 $boundaryGroup=Get-CMBoundaryGroup-SiteSystem...
How do i convert SCCM SQL query (in SQL Mgmt Studio) to a config manager query to run against a collection How Do I Deploy A reg key via sccm in HKCU How do I remove a client computer from a device collection? How do i write a query to show if a specific KB is installed? How...
Does that Powershell command remove all traces of SCCM client from machine? I would appreciate if you share and have similar experience with client requirements. Secondly can you check below configuration is OK as I import the Powershell script via Intune and got below additional settings t...
If you’re getting the errors below in your smsts.log when running a task sequence from Run Advertised Programs it may be because you’ve advertised the task sequence to a user rather than a computer. Remove the user from the targeted collection, add the computer, and refresh policy and ...
Powershell (5) SCCM 1606 (3) SCCM 2007 (1) SCCM 2012 (49) SCCM Reports (1) Server 2008 (2) Server 2012 (3) SQL Queries (2) SQL Server (11) VBScript (1) Virtual Machine Applications (1) Windows 10 (1) Windows 7 (2) Windows Updates (3) WSUS (1) Archive...
The following example is a PowerShell method for building out a similar hierarchy. The script requires that you pass the parameters selected from your environment for the following: Site Code The Client OS The Client Version (as seen from the SCCM client) The Limiting Collection (norm...
I'd like to install a package remotely. I've created a PowerShell script that works locally: prettyprint複製 $uiobj = New-Object -ComObject "UIResource.UIResourceMgr" $patch = $uiobj.GetAvailableApplications() | Where-Object packagename -like *1803* ...