Jump to content

Recommended Posts

Posted

Hi All,

 

I've been given the task of putting win8 on our infant student netbooks. All good so far. On the domain, policys seem to be ok, apart from problems with UAC & display res which i've sorted. However, they do not want the default items on the metro screen (mail, cal, etc) & would just like links to software & IE.

 

How are you guys going about doing this?

 

Thanks

Posted

$AppsList = "Microsoft.Bing",
           "Microsoft.BingFinance",
           "Microsoft.BingMaps",
           "Microsoft.BingNews",
           "Microsoft.BingSports",
           "Microsoft.BingTravel",
           "Microsoft.BingWeather",
           "Microsoft.Camera",
           "Microsoft.Media.PlayReadyClient",
           "microsoft.microsoftskydrive",
           "Microsoft.Reader",
           "microsoft.windowscommunicationsapps",
           "microsoft.windowsphotos",
           "Microsoft.XboxLIVEGames",
           "Microsoft.ZuneMusic",
           "Microsoft.ZuneVideo"
           
$AppsList | ForEach { Get-AppxPackage -Name $_ } | ForEach { Remove-AppxPackage $_; Remove-AppxProvisionedPackage -Online -PackageName $_ }

 

Source: blogs.technet.com/b/deploymentguys/archive/2013/06/07/update-removing-built-in-applications-from-windows-8.aspx

  • Thanks 1
Posted
Thanks for your help. Do you know the best way of then adding/removing shortcuts/having a different start screen for staff users etc? Does it get messy when installing new programs and deploying shortcuts, is there a way to redirect the start screen like you'd redirect the start menu in xp/win 7. Appreciate any help I can get, thanks.
Posted
ah, cheers for that. I've got the start menu redirection working (picked up from our student gpo for the win7s, made no changes), & everything shows up if you use the search (putting the mouse in the bottom corner, clicking search & finding the program). However, I wanted to be able to pin say IE, RM Maths, Nessy, Word to the start screen. It's for the infant kids so wanted to make as simple as possible.
Posted

Anyone deploying Windows 8 now? This post on wards mentions customising the start menu using a local user, copying the appdata file which holds the layout and deploying it using group policy. That is probably what you need as your systems have already been syspreped.

 

Its also worth mentioning that the AppsFolderLayout.bin file is not created until the computer is part of a domain (on Windows 8 Pro)

  • Thanks 1
Posted

yeah i would personally wait untill 8.1 now IF you have the choice. if not...

get a new build on a machine with youe default applications on (ones that are on every machine). customise the start screen how you like (IF icons for applications are allready on there, delete them and re-add them from the exe in the C: Drive)

once you have got it customized how you want go to sysprep and sysprep into audit mode. login and move

C:\Users\Administrator\Local\Microsoft\Windows\AppsFolder.Itemdata-ms

C:\Users\Administrator\Local\Microsoft\Windows\AppsFolder.Itemdata-ms.bak

C:\Users\Administrator\Local\Microsoft\Windows\AppsFolderLayout.bin

C:\Users\Administrator\Roaming\Microsoft\Windows\Start Menu\Programs

 

move to the default user in the same locations.

 

set up a GP to file copy those from network share to the locations.

 

IF Deploying along side windows 7 deny win 8 pcs access to \\\NETLOGON\Default User.v2 otherwise windows 8 pcs will use this.

 

its kinda trial and error for the start screen... =[

 

to remove packages from a wim i use this powershell script. (youll need to edit to make it work for you obvs)

Mount your image with dism then edit this to suit your needed

 

$WimLoc = "C:\wim"

$PackageLoc = "$WimLoc\Program Files\WindowsApps"

$packname = dir $PackageLoc

$packname = ($packname).Name

 

foreach ($pak in $packname) {

dism /image:$WimLoc /remove-provisionedappxpackage /packagename:$pak

}

 

Think thats right. just UN-provisions them so they dont install for users.

that will remove them form the wim which is a one time process. OR what you could do is add a step in the unattend.xml file / or task sequence to run "powershell.exe -command (get-appxpackage | remove-appxpackage)" should do it. but will delete the whole app rather than just unprovisioning them.

 

sorry if this is all ramblings im quite O_O right now ^_^ message is ya want help with soem stuff

  • Thanks 1
Posted
IF Deploying along side windows 7 deny win 8 pcs access to \\\NETLOGON\Default User.v2 otherwise windows 8 pcs will use this.

 

 

This! This was very annoying for us. In the end we had to Only allow local user profiles else when anyone logs in they would see a blank desktop and no access to anything.

  • Thanks 1
Posted

i know absolutly ridiculous isnt it! >_< took me god near a month to figure out start screen and default profiles :(

anyways, hope it helped.

I am now sticking in automated emails and things so we make sure everything that is win 8 is in the group to disable them from seeing that location ^_^

 

we are thinking about removing the default user from the network and getting win 7 to pic it up locally too. however are unsure oof implications of this so waiting till summer :)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...