Top articles
-
[ICD] [windows 10] [master] Créer une image de référence sans fichier unattend
L'idée est assez simple. Prenons un poste windows 10 installé de base. Configurons le avec ICD Puis faisons un sysprep + capture Injectons cette image capturée dans MDT... Pourquoi faire ainsi? L'interface ICD est bien plus userfriendly que l'interface...
-
[Windows 2012] [network] Configuration express of new computers in domain
FROM DC: netsh -c interface dump > c:\networkconfig.txt FROM new computer: netsh -f c:\networkconfig.txt (1) reboot modify network config with @IP of this computer because it (1) write the network config that is the DC network config but also it give...
-
[XML] [AD] Xml file to install AD
replace in the file <*Your AD Server Name*> by Your AD Server Name:
System.Collections.ObjectModel.Collection`1[[System.Management.Automation.PSObject,... -
[SCCM] [Powershell] [BootImage] Extract and Configure SCCM WIM Boot Image
This script will extract the WIM file from the ISO boot image generated by SCCM. It then mounts, configures, and unmounts the WIM file so it is ready to push up to WDS. [CmdletBinding()] param ( [ValidateNotNullOrEmpty()] [string]$File = 'C:\WinPE\SCCM.iso'...
-
[SCCM] [DART] [Powershell] Add DaRT components to a Boot Image in SCCM
this script: <# .SYNOPSIS Add DaRT components to a Boot Image in Configuration Manager. .DESCRIPTION Add DaRT components to a Boot Image in Configuration Manager. This script requires to be executed on a system with Windows ADK, MDT and DaRT installed....
-
[SCCM CB] [Powershell] Script to install SCCM CB
Script to install SCCM CB on Windows Server. Connect to your Windows Server that will be your SCCM Server as user that is domain admin and schema admin, and run it: #Create SCCM Server OU #Create the OU for The SCCM servers. #All SCCM servers will be...
-
[CMD] Run CMD as local system account
get psexec via pstools (here) and run: psexec.exe -s -i cmd.exe Sinon, voici un petit executable de mon cru, j'ai nommé "RunAsSystem" Téléchargez-le sous la forme RunAsSystem.txt et renommez le RunAsSystem.exe (les antivirus bloquent les exe en upload...
-
[Export] [XenApp] [Powershell] Export a list of all XenApp published applications via Powershell
[Export] [XenApp] [Powershell] Export a list of all XenApp published applications via Powershell XenApp 6.x: Add-PSSnapin *citrix* Get-XAApplicationReport * | Select BrowserName, {($_.ServerNames | Sort) -join ", "} | Export-csv c:\tmp\XA-AppReport.csv...
-
[Outlook] [XenApp] Publish Outlook 2016 in XenApp
1. Download Office 2016 Administrative Template files and import ADML and ADMX files to C:\windows\PolicyDefinitions 2. pick ones that apply to you: -> Computer Configuration/Administrative Templates/Microsoft Office 2016 (Machine)/Updates Enable Automatic...
-
[SCCM] [Powershell] Report DPs errors in csv
Connect to SCCM: In admin console type it: Import-Module 'C:\Program Files (x86)\Microsoft Configuration Manager\AdminConsole\bin\ConfigurationManager.psd1' New-PSDrive -Name
-PSProvider "AdminUI.PS.Provider\CMSite" -Root " -
[Powershell] Install the Near Ntwork Printer as Default
#get IPScope function GetScope{ Param([Parameter(Mandatory=$true)][string]$PC,[Parameter(Mandatory=$true)][string]$ip) if($ip){$ipV4 = $ip} else{$ipV4 = (Test-Connection -ComputerName $PC -Count 1 | Select IPV4Address).IPV4Address} $ipV40 = $ipV4.split(".")[1]...
-
[Powershell] Install Scope's Printers
#get IPScope function GetScope{ Param([Parameter(Mandatory=$true)][string]$PC,[Parameter(Mandatory=$true)][string]$ip) if($ip){$ipV4 = $ip} else{$ipV4 = (Test-Connection -ComputerName $PC -Count 1 | Select IPV4Address).IPV4Address} $ipV40 = $ipV4.split(".")[1]...
-
Deploy Windows Server 2008 or higher in vCenter script
Set a CSV file with informations: Domain vCenterInstance Cluster VMTemplate CustomSpec Location DataStore DiskStorageFormat NetworkName Memory CPU DiskCapacity SubnetLength GW IP_DNS Hostname IP JoinDomainYN Deploy Windows Server 2008 or higher in vCenter...
-
[P2V] [Win7] Win7P2VforVBox
Steps 1. Download VMware vCenter Converter for Windows and install it on the physical Win7 machine to be converted: https://my.vmware.com/web/vmware/info/slug/infrastructure_operations_management/vmware_vcenter_converter_standalone/5_5 2. Run the VMware...
-
Copy User and OU to new AD
From a server in old AD: ExpUsrsInOu.ps1: #Export User in OU: $CanoName = Get-ADOrganizationalUnit -Filter * -Properties CanonicalName | Select-Object -Property CanonicalName foreach($OUpath in $CanoName.CanonicalName) { $ExportPath = 'C:\users_in_ou.csv'...
-
Create AD Powershell Script
A simple script to create a AD in powershell: # .\CreateDom.ps1 -DomainName MyDomain -AdminPassword P@ssw0rd! Param($DomainName,$AdminPassword) if(!$DomainName){Write-Output "Value for Domain Name (DomainName) is mandatory"; Exit} if(!$AdminPassword){Write-Output...
-
[SharePoint 2013] [PS] Comptes Gérés à la volée
Tout d'abord, créer les profils dans AD + les fichiers sécurisés de sauvegarde des credentials: #Utilisation: créer un compte AD à la volée et sauvegarder ses credentials dans un fichier texte #Usage: .\CreateUserandCred.ps1 -user
-pwd... -
[optimization] How to uninstall "hasplms.exe" process?
What is hasplms.exe" process? The HASP License Manager is an independent application that serves as a link between the HASP hardware lock and the protected GTX application. Install the HASP License Manager on the computer to which you connect your netHASP...
-
[Powershell] [Windows Configuration] How to disable "news and interests" instantly
#Deactivate Windows 10 widget "News and interests" Once and for all: $ShellFeedsTaskbarViewMode = 2 $IsAnaheimEdgeInstalled = (Get-ItemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Feeds -Name "IsAnaheimEdgeInstalled").IsAnaheimEdgeInstalled...
-
Install New AD from Powershell
Semi-Automatique Install New AD from Powershell: AddAdPrereqs.ps1 (need reboot after because of the computer rename): Param( [Parameter(Mandatory=$false, ValueFromPipeline=$true)][string[]]$ipaddress = "192.168.0.255", [Parameter(Mandatory=$false, ValueFromPipeline=$true)][string[]]$netbiosName...
-
[VMWARE] [PowerCLI] Deploy VMs and Configure the Guest OS
Here a script to deploy VM and configure Gest OS. To adjust for your infrastructure: # DISCLAIMER: There are no warranties or support provided for this script. Use at you're own discretion. Andy Syrewicze and/or Altaro Software are not liable for any#...
-
[SCCM] [Windows 10] Etendre l’inventaire pour connaitre l’origine de Windows 10
Windows 10 Fresh vs Upgrade Inventory Information The Windows 10 Upgrade information is located in the device registry in the HKLM\System\Setup\upgrade\downlevelbuildnumber. We need to modify our hardware inventory to gather this value on our Windows...
-
[SCCM] List of TechNet Virtual Labs for SCCM ConfigMgr 2012 R2 and Intune
Device Management (Mobile Device) with Microsoft Intune (Standalone) - Click to Launch the Virtual Lab Device Management (Mobile Device) with Microsoft Intune and SCCM 2012 R2 (Hybrid) - Click to Launch the Virtual Lab Introduction to Microsoft SCCM ConfigMgr...
-
[SCCM] [Windows 10] Prepare your Environment
I will guide you to prepare your environment to welcome windows 10 with your SCCM in 11 points. I Upgrade to SCCM 1511 It’s possible to manage Windows 10 with SCCM 2012 but when it comes to deploying Windows 10, if you want to use the full features, you...
-
[SCCM] [INTUNE] How to install SCCM 2012 R2 Windows Intune Connector
Role Description The WIC is used to sends settings and software deployment information to Micosoft Intune and retrieves inventory messages from mobile devices. The Intune service acts as a gateway that communicates with mobile devices. This role is mandatory...
/image%2F0881799%2F20140610%2Fob_a8c7fe_logo2.jpg)