Posts

Showing posts from August, 2015

Powershell to Automate Publishing of Bulk App-V 5.0 or 5.1 packages to a User in a Standalone environment.

In a standalone environment, where there are many App-V 5.0 or App-V 5.1 packages that needs to be published and mounted to a user in order to test the applications, it’s quite hard to open up powershell and type in the commands each time. This is quite time consuming and a repeated job.   With this powershell script, the job can be made easy by publishing these BULK packages. This powershell script code contains commands to ADD the App-V packages along with their respective DeploymentConfig.xml file and Publish them along with their UserConfig.xml file and at last Mount them successfully. User has to first place all the App-V packages in a single folder and then edit the powershell script by giving in the exact folder path.   The powershell code will first load the AppvClient module.   #Import App-V Client Module     Import-Module AppvClient      Next it will enable the execution of scripts present in the dynamic configuration files.     #Enable execution of scripts   Set-AppvClientC

Powershell to Automate Publishing of Bulk App-V 5.0 or 5.1 packages Globally in a Standalone environment

In a standalone environment, where there are many App-V 5.0 or App-V 5.1 packages that needs to be published and mounted in order to test the applications, it’s quite hard to open up powershell and type in the commands each time. This is quite time consuming and a repeated job. With this powershell script, the job can be made easy by publishing these BULK packages. This powershell script code contains commands to ADD the App-V packages along with their respective DeploymentConfig.xml file and Publish them  and at last Mount them successfully. The powershell code will first load the AppvClient module. #Import App-V Client Module Import-Module AppvClient Next it will enable the execution of scripts present in the dynamic configuration files. #Enable execution of scripts Set-AppvClientConfiguration -EnablePackageScripts 1 NOTE: User has to edit the powershell code and give in the exact path where the packages are located. Say example, you have kept all the App-V packages in C:\App-V pa

Fixed: Importing Windows 10 drivers in ConfigMgr 2012 fails with “Driver is not applicable to any supported platforms. Code 0x80070661”

With the Cumulative Update 1 for System Center 2012 R2 Configuration Manager Service Pack 1 and System Center 2012 Configuration Manager Service Pack 2, Windows 10 drivers can now be successfully imported into the DriverCatalog.log file for operating system deployment. DriverCatalog.log file Information: Initializing driver digest from '\\server\Windows10-x64\{Windows10-driver}.inf'\\server\Windows10-x64\{Windows10-driver}.inf is not applicable to any supported platforms.Driver is not applicable to any supported platforms. Code 0x80070661 This problem was due to the way version number recognition was performed prior to the CU1 update. For more Information click Microsoft link here