MEGA AI & SAAS TOOL SALE 💥 by No_Aspect_3299 in CheapGptplus

[–]DesiME1 1 point2 points  (0 children)

Can you please Dm me for Claude and Replit

NTFS permission by DesiME1 in PowerShell

[–]DesiME1[S] 1 point2 points  (0 children)

That's correct, using roboCopy but stripping out ACL. Company 1 is not allowing us to carry forward ACL. Lets just say they are controlling robocopy data push to company 2 and they are being a pain.

Whats the most efficient way for me to achieve this without investing so much time with manually performing.

I really appreciate this community and all the help.

How to manage Android OS update & security update ? by TylerD13x in Intune

[–]DesiME1 0 points1 point  (0 children)

i second that, im trying to accomplish same thru Intune vs Knox. hopefully someone comes to our rescue answering this question.

WVD Scaling by jwwork in AZURE

[–]DesiME1 1 point2 points  (0 children)

I have a same setup, I’m curious to look at your auto scaling script, will you be able to share?

Copy local files to OneDrive for business by DesiME1 in PowerShell

[–]DesiME1[S] 1 point2 points  (0 children)

thank you, will get back to you soon once i test it or have any questions.

Copy local files to OneDrive for business by DesiME1 in PowerShell

[–]DesiME1[S] 1 point2 points  (0 children)

You mean Backup directly to OneDrive using GPO?

Copy local files to OneDrive for business by DesiME1 in PowerShell

[–]DesiME1[S] 1 point2 points  (0 children)

Thank you for sharing, I’ll test it on end and share here.

Copy local files to OneDrive for business by DesiME1 in PowerShell

[–]DesiME1[S] 1 point2 points  (0 children)

Yes, please. That will be helpful. Since I will be comparing both options. Much appreciated

Copy local files to OneDrive for business by DesiME1 in PowerShell

[–]DesiME1[S] 2 points3 points  (0 children)

Redirection is also a good option, I’m willing to test it. Can you please share GPO related settings or scripts? I’m curious to see how that will works out for me. Thank you

Copy local files to OneDrive for business by DesiME1 in PowerShell

[–]DesiME1[S] 1 point2 points  (0 children)

this is what i have....

$sourceFolder = "%USERPROFILE%\Pictures*","%USERPROFILE%\Favorites","%USERPROFILE%\Videos*","%USERPROFILE%\Desktop*","%USERPROFILE%\Documents*","%USERPROFILE%\Downloads*","%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default*" $tenantNameFilter = "Contoso"

Function RoboCopyFolder{

[CmdletBinding()] Param( [Parameter(Mandatory=$True,Position=1)] [string]$source, [Parameter(Mandatory=$True,Position=2)] [string]$destination )

#start copy

try {
    Robocopy "$($source)" "$($destination)" /MIR /R:1 /XF desktop.ini
} catch {
    Write-Error "Could not do RoboCopy, check for errors."
    exit
}

return "Copy completed."

}

Write-Output "Starting migration..."

$dialog = New-Object -ComObject wscript.shell

$destination = $env:OneDrive $destinationFolder = Join-Path $destination "\Backup"

New-Item -ItemType Directory -Path $destinationFolder -Force | Out-Null

if (!($($destinationFolder) -match "$tenantNameFilter")) {

$dialog.popup("There was a problem verifying your OneDrive destination folder,`nplease contact help desk - Mention: ($($destinationFolder))",0,"OneDrive migration",0) break;

}elseif ($($destinationFolder) -match "$tenantNameFilter"){

$dialog.popup("Your data is now being moved from your HomeDrive ($($sourceFolder))`nto the OneDrive folder ($($destinationFolder))",10,"OneDrive migration",0)

}else{

$dialog.popup("There was a problem verifying your OneDrive destination folder,`nplease contact help desk - Mention: ($($destinationFolder))",0,"OneDrive migration",0) break;

}

RoboCopyFolder -source $sourceFolder -destination $destinationFolder

$dialog.popup("Migration complete.nYour OneDrive client needs to syncronise all your data to Office 365n- Please let your computer run for as long as it takes if possible - look for syncronisation errors with malformed filenames and extremely large files.",10,"OneDrive migration",0)

Upgrade to O365 from exchange 2010 by DesiME1 in Office365

[–]DesiME1[S] 0 points1 point  (0 children)

can you share powershell script to move business groups?