Dear Pros,<\/p>\n
Please assist me in removing OEM Office 365 from Dell XPS 9570.<\/p>\n
I uninstalled office 365 (30 days ) demo and routinely went ahead installing Office standard 2016 (genuine license - Volume License)<\/p>\n
I activated the Office 2016 standard and everything looked fine and then suddenly I find \" Please activate your product\". I did the activation and then this process looped again. I followed the steps to uninstall by downloading the tool (fix-tool) and then did the whole process again. Now when I update the system I find office updates have been downloaded and then again again activation mode starts again.<\/p>\n
Damn, I have seen complicated issues i my career but this stupid cycle of activation drama makes my job funny as this simple thing cannot be resolved. Please Please HELP<\/p>\n
Thanks in advance.<\/p>","upvoteCount":8,"answerCount":6,"datePublished":"2019-01-22T06:34:03.000Z","author":{"@type":"Person","name":"rajuegypt","url":"https://community.spiceworks.com/u/rajuegypt"},"suggestedAnswer":[{"@type":"Answer","text":"
Dear Pros,<\/p>\n
Please assist me in removing OEM Office 365 from Dell XPS 9570.<\/p>\n
I uninstalled office 365 (30 days ) demo and routinely went ahead installing Office standard 2016 (genuine license - Volume License)<\/p>\n
I activated the Office 2016 standard and everything looked fine and then suddenly I find \" Please activate your product\". I did the activation and then this process looped again. I followed the steps to uninstall by downloading the tool (fix-tool) and then did the whole process again. Now when I update the system I find office updates have been downloaded and then again again activation mode starts again.<\/p>\n
Damn, I have seen complicated issues i my career but this stupid cycle of activation drama makes my job funny as this simple thing cannot be resolved. Please Please HELP<\/p>\n
Thanks in advance.<\/p>","upvoteCount":8,"datePublished":"2019-01-22T06:34:03.000Z","url":"https://community.spiceworks.com/t/remove-pre-installed-office-365-and-install-2016-manually/693701/1","author":{"@type":"Person","name":"rajuegypt","url":"https://community.spiceworks.com/u/rajuegypt"}},{"@type":"Answer","text":"
Assuming you’re using Windows 10, run this powershell script:<\/p>\n
Write-Host \"Removing Apps...\" -ForegroundColor Green\n Write-Host \"\"\n \n # Create array to hold list of apps to remove\n $appname = @(\n \n \"*Microsoft.Desktop.Access*\"\n \"*Microsoft.Desktop.Excel*\"\n \"*Microsoft.Desktop.Outlook*\"\n \"*Microsoft.Desktop.Word*\"\n \"*Microsoft.Desktop.PowerPoint*\"\n \"*Microsoft.Desktop.Publisher*\"\n \"*Microsoft.MicrosoftOfficeHub*\"\n \"*Microsoft.Office.OneNote*\"\n \"*Microsoft.Office.Sway*\"\n \"*Office.Desktop*\"\n )\n # Remove apps from current user\n ForEach($app in $appname){\n Get-AppxPackage -Name $app | Remove-AppxPackage -ErrorAction SilentlyContinue\n }\n # Remove apps from all users - may need to reboot after running above and run this again\n ForEach($app in $appname){\n Get-AppxPackage -Allusers -Name $app | Remove-AppxPackage -Allusers -ErrorAction SilentlyContinue\n }\n # Remove apps from provisioned apps list so they don't reinstall on new users\n ForEach($app in $appname){\n Get-AppxProvisionedPackage -Online | where {$_.PackageName -like $app} | Remove-AppxProvisionedPackage -Online -ErrorAction SilentlyContinue\n }\n<\/code><\/pre>\nIt’ll remove Office from all users, and from the machine so it won’t reinstall every time a new user logs in.<\/p>","upvoteCount":2,"datePublished":"2019-01-22T08:13:34.000Z","url":"https://community.spiceworks.com/t/remove-pre-installed-office-365-and-install-2016-manually/693701/2","author":{"@type":"Person","name":"DailyLlama","url":"https://community.spiceworks.com/u/DailyLlama"}},{"@type":"Answer","text":"
I think this is the un-installation or removal of the Dell Trial version and not the Win10 “get office”<\/p>\n
\n- You need to get to windows settings and under app to remove the M$ Office 365 then reboot.<\/li>\n<\/ul>\n
OR<\/p>\n
\n- Goto control panel (view large icons) and click on “programs & features”… remove the M$ Office 365 then reboot<\/li>\n<\/ul>","upvoteCount":0,"datePublished":"2019-01-22T08:25:06.000Z","url":"https://community.spiceworks.com/t/remove-pre-installed-office-365-and-install-2016-manually/693701/3","author":{"@type":"Person","name":"adrian_ych","url":"https://community.spiceworks.com/u/adrian_ych"}},{"@type":"Answer","text":"
Hi Adrian,<\/p>\n
Initially I actually did not find under apps neither program & features. So I went ahead and installed my genuine offline installer, activated it.<\/p>\n
Damn thing gets updated and again gets me activation window<\/p>\n
Help Me Buddy.<\/p>","upvoteCount":0,"datePublished":"2019-01-22T09:55:44.000Z","url":"https://community.spiceworks.com/t/remove-pre-installed-office-365-and-install-2016-manually/693701/4","author":{"@type":"Person","name":"rajuegypt","url":"https://community.spiceworks.com/u/rajuegypt"}},{"@type":"Answer","text":"