sccm

SMS_Application WMI class's equivalent table in SCCM database

北城余情 提交于 2021-02-11 14:02:29
问题 I'm having an AppModel application in my System Center Configuration Manager(SCCM) console. Please see below screenshot of the properties window of the SCCM application: I need to know the value of 'Allow this application to be installed from the Install Application task sequence.....' checkbox. It is highlighted in yellow. I tried to get it through wbemtest tool using below details: Namespace: root\sms\site_[siteCode] e.g. root\sms\site_lab Query: select * from SMS_Application I hope I've

SCCM does not update software that was installed manually

喜欢而已 提交于 2021-02-11 08:08:14
问题 Client machines are all Windows 10 Pro (64-Bit). If we were to have MyCompanyApp.msi installed via SCCM, we found that we could update it successfully using SCCM. Everything normal there. HOWEVER, if I were to run MyCompanyApp.msi locally either by double clicking on the msi or running msiexec , updating it with SCCM fails. Moreover, SCCM goes ahead and runs an install as if it had never detected the previous installation. When you check Control panel, you see the product listed twice; each

SCCM does not update software that was installed manually

你。 提交于 2021-02-11 08:01:37
问题 Client machines are all Windows 10 Pro (64-Bit). If we were to have MyCompanyApp.msi installed via SCCM, we found that we could update it successfully using SCCM. Everything normal there. HOWEVER, if I were to run MyCompanyApp.msi locally either by double clicking on the msi or running msiexec , updating it with SCCM fails. Moreover, SCCM goes ahead and runs an install as if it had never detected the previous installation. When you check Control panel, you see the product listed twice; each

VBscript to run a bat file with elevated privileges

我的梦境 提交于 2021-02-05 09:45:53
问题 Here is my bat file REG DELETE "HKLM\Software\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientId /f REG DELETE "HKLM\Software\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientIdValidation /f C:\Windows\System32\wuauclt.exe /resetauthorization /detectnow C:\Windows\System32\wuauclt.exe /reportnow The bat file doesn't work unless it's run inside an "Administrator Command Prompt" My question is how can I use a VBScript wrapper to run the bat file as an Admin? I was trying

CCM_Application User available software missing

主宰稳场 提交于 2021-01-28 16:33:54
问题 While querying the namespace root\ccm\clientsdk class ccm_application I've found that it'll contain objects for any triggered application installs and not user available applications. Has anyone found a way around this? 回答1: From what you're saying I think this is by design with SCCM, but may be different in the more recent windows 10 versions. What I've seen with it is that applications made available to a User collection don't seem to appear in the local client classes. This makes sense

CCM_Application User available software missing

拈花ヽ惹草 提交于 2021-01-28 16:32:05
问题 While querying the namespace root\ccm\clientsdk class ccm_application I've found that it'll contain objects for any triggered application installs and not user available applications. Has anyone found a way around this? 回答1: From what you're saying I think this is by design with SCCM, but may be different in the more recent windows 10 versions. What I've seen with it is that applications made available to a User collection don't seem to appear in the local client classes. This makes sense

SCCM客户端软件安装方法

跟風遠走 提交于 2020-03-05 14:57:03
最近这两天,就是被一个钻牛角尖的人折磨,本身就是一个简单的问题。非得让我用长篇大论来解释。那就解释。 SCCM客户端软件有以下安装方法: 第一:客户端请求安装 可通过三种主要方式使用客户端请求: 为站点配置客户端请求安装时,客户端安装会自动在站点发现的计算机上运行。 当站点的已配置边界配置为边界组时,此方法限定于这些边界。 通过为特定集合或集合内的资源运行“客户端请求安装向导”来启动客户端请求安装。 使用客户端请求安装向导来安装 Configuration Manager 客户端(可用于查询结果)。 只有当查询返回的项之一为“系统资源” 类的“ResourceID” 特性,安装才会成功。 服务器会在7天内不断重试,就是说,不要认为自己安装好系统后,这个客户端会立即安装上,有一个时间,7天以后没有安装上再来找我。 第二,基于软件更新点的安装,使用WSUS和活动目录中的组策略来安装这个客户端软件,不要再问怎么操作,自己去查呀。 第三,组策略安装,自己配置一个共享文件夹,然后配置好组策略。 第四,登录脚步安装 第五,手动安装,就是去c:\windows\ccmsetup里运行ccmsetup.exe 就这五种方法,别说自己不会怎么在电脑上安装个SCCM客户端,安装好以后要配置一下主站点,没有人告诉你说安装了一个软件,啥都不配置就能用的。 最近天天烦心这些桌面的事,做桌面的,如果你不会修

Interactive application running in SYSTEM session via SCCM

会有一股神秘感。 提交于 2020-03-05 04:18:36
问题 Is it me or GUI windows don't show up in the SYSTEM account session? I don't want to interact with them, but they need to pop up since I have a script that interacts with the windows in an automated way. I built a script that needs to interact with a software's windows to gather information. This works perfectly when done in a user's session but the problem is that when ran via SCCM and the "system" session (which is what we want since we don't want the user to see it happen), the software

VS 2013 setup project update package fails for running executable

旧巷老猫 提交于 2020-01-06 23:51:18
问题 I have created a setup project (using VS 2013) to update my existing application on desktop clients. Previously, application has already been installed with same project output package. So, I have changed the setup project version Product code is updated in the meantime RemovePreviouVersions is checked MSI will be delivered via Microsoft SCCM 2012 R2 and has to support silent installation. My problem is, application has been running through all clients and setup can't replace existing

Taskkill Exit code : 255

六眼飞鱼酱① 提交于 2019-12-23 01:54:56
问题 I'm trying to distribute software through SCCM 2012; running a simple command in a vbs, ends with the result code 255. Example: WshShell.run ("TASKKILL /F /IM """ & processname & """ /T", 0, True) After returning 255, the script stops and doesn't install the software. Someone had this problem? What does the code 255 mean? Thanks. 回答1: Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2") Set colItems = objWMIService.ExecQuery("Select * From Win32_Process")