Overblog
Suivre ce blog Administration + Créer mon blog

Invoke-USMT function code

Publié le par damcuvelier

function Invoke-USMT { [CmdletBinding()] param( [Parameter(Mandatory=$true)] [string]$SourceComputer, [Parameter(Mandatory=$true)] [string]$DestinationComputer, [Parameter(Mandatory=$true)] [string]$UserName, [Parameter(Mandatory=$true)] [string]$SharePath,...

Lire la suite

[Windows 10] upgrade windows 10.1703 to windows 10.1709

Publié le par damcuvelier

Microsoft published the Windows 10 1709 feature update (aka Fall Creator Update), as Semi-Annual Channel on October 18th, 2017. You may need to deploy it to your Windows 10 computer to stay supported or to benefits from the new features. Before deploying...

Lire la suite

[windows 10] télécharger le DART x64

Publié le par damcuvelier

prérequis avoir le MDOP correspondant toutes les infos depuis: https://technet.microsoft.com/en-us/library/jj680675.aspx pour l'intégrer rien de plus simple: 1) Editer la wim de windows 10 (la version que vous avez extraite) 2) remplacer l'image winre.wim...

Lire la suite

[Windows] [VBScript] Fix error no vbscript engine

Publié le par damcuvelier

Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\.vbs]@="VBSFile" [HKEY_CLASSES_ROOT\.vbs\PersistentHandler]@="{5e941d80-bf96-11cd-b579-08002b30bfeb}" [HKEY_CLASSES_ROOT\VBSFile]@="VBScript Script File""FriendlyTypeName"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,\...

Lire la suite

[Windows] add outlook icon on desktop

Publié le par damcuvelier

Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{00020D75-0000-0000-C000-000000000046}]

Lire la suite

[PCLI] VMWARE Autodeploy script

Publié le par damcuvelier

use csv file to get infos # Input parameters :# -------param ($csvfile) $deployinfos = Import-Csv -Path $csvfile$deployinfos = $deployinfos | where-object {($_.name -ne "") -and ($_.template -ne "") -and ($_.oscust -ne "") -and ($_.cluster -ne "")} |...

Lire la suite

[VMWARE] [PowerCLI] Deploy VM and configure hard disk

Publié le par damcuvelier

$templateName = 'template' $esxName = 'esx' $clusterName = 'cluster' $dsName = ' dsName ' $template = Get-Template -Name $templateName $ds = Get-Datastore -Name $dsName $cluster = Get-Cluster -Name $clusterName $esx = Get-VMHost -Name $esxName $vm = New-VM...

Lire la suite

[VMWARE] [PowerCLI] Deploy VMs and Configure the Guest OS

Publié le par damcuvelier

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#...

Lire la suite

<< < 1 2 3 4 5 6 7 8 9 10 20 30 > >>