Setup was unable to compile the file DiscoveryStatus.mof

  • Beitrags-Autor:
  • Beitrags-Kategorie:SCCM

Client install fails install fails with error: MSI: Setup was unable to compile the file DiscoveryStatus.mofThe error code is 80041002 File C:\Windows\ccmsetup\{59A0EA77-D28C-4286-83A6-04BB57B9CDD6}\client.msi installation failed. Error text: ExitCode: 1603Action: CcmRegisterWmiMofFile.ErrorMessages:Setup was…

WeiterlesenSetup was unable to compile the file DiscoveryStatus.mof

Proxy Server einrichten

  • Beitrags-Autor:
  • Beitrags-Kategorie:Andere

So richten Sie einen Schweizer Proxy ein Öffnen Sie die Systemsteuerung mit einem Klick auf das Windows-Symbol unten links und einem weiteren Klick auf "Systemsteuerung". Klicken Sie auf "Netzwerk- und…

WeiterlesenProxy Server einrichten

Querys

  • Beitrags-Autor:
  • Beitrags-Kategorie:SCCM

SCCM Query To check machine RAM Memory ******************************** select distinct  SMS_R_System.NetbiosName,  SMS_G_System_PC_BIOS.SerialNumber, SMS_G_System_X86_PC_MEMORY.TotalPhysicalMemory,  SMS_R_System.IPAddresses, SMS_G_System_NETWORK_ADAPTER_CONFIGURATION.DNSDomain  from  SMS_R_System inner join SMS_G_System_PC_BIOS  on SMS_G_System_PC_BIOS.ResourceID = SMS_R_System.ResourceId  inner join SMS_G_System_X86_PC_MEMORY  on SMS_G_System_X86_PC_MEMORY.ResourceID =…

WeiterlesenQuerys

Install Google Chrome with Powershell

  • Beitrags-Autor:
  • Beitrags-Kategorie:Scripting

1.) Start Powershell with Administrator rights 2.) Paste the following Script in Powershell $LocalTempDir = $env:TEMP; $ChromeInstaller = "ChromeInstaller.exe"; (new-object System.Net.WebClient).DownloadFile('http://dl.google.com/chrome/install/375.126/chrome_installer.exe', "$LocalTempDir\$ChromeInstaller"); & "$LocalTempDir\$ChromeInstaller" /silent /install; $Process2Monitor = "ChromeInstaller"; Do…

WeiterlesenInstall Google Chrome with Powershell