Overblog Tous les blogs Top blogs Technologie & Science Tous les blogs Technologie & Science
Suivre ce blog Administration + Créer mon blog
MENU

Migrate-WindowsUserProfile

Publié le par damcuvelier

<#.SYNOPSISMigrate user state from one PC to another using USMT..DESCRIPTIONMigrate user state from one PC to another using USMT. Intended for domain joined computers.By default, all user profile data except Favorites and Documents will be included.Tool...

Lire la suite

USMT Script

Publié le par damcuvelier

Add-PSSnapin Microsoft.SharePoint.PowerShell function MigrateUserOrGroups($migrationType, $csvFile) { #Getting the SPFarm object $farm = Get-SPFarm Write-Host $migrationType #Checking whether the user input the type of Migration as Group if($migrationType...

Lire la suite

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

<< < 10 11 12 13 14 15 16 17 18 19 20 30 40 > >>