Jump to content

arjanver

Members
  • Posts

    49
  • Joined

  • Last visited

Everything posted by arjanver

  1. I'm using GPP Printer policies with a logon script policy with this script. Set WshShell = CreateObject("Wscript.Shell") Result = WshShell.Run("cmd /c echo n | gpupdate /target:user",0,true) Wscript.Quit(Result)
  2. We have some sort of same problem. tried really everything. http://www.edugeek.net/forums/windows-10/189682-windows-10-group-policy-fail-directly-after-boot-succes-after-relogon-0x80074005.html Bu we solve it by using a Logon script (user)policy which launch gpupdate command. seems a little spartan solution, but for now it works.
  3. Solved it by using a Logon script policy which launch gpupdate command. seems a little spartan solution, but for now it works.
  4. We have a Server 2008 R2 Domain and a printserver with Server 2016 and Windows 7 and 10 clients. We have group policies which for printer deployment using group policy preferences which always and still works on windows 7 clients. Now on windows 10 1703 not always printers are deployed. Most of the time at first boot there are no printers, but when logoff and logon again printers are deployed. Nothing in eventviewer, only when it fails in gpresult it gives error code 0x80070057 Also tried: wait for link at startup" and "group policy wait time" GPOs do not have any affect. Added HardenedPaths policy in Computer Configuration - Administrative Templates - Network - Network Provider - Hardened UNC Paths Value Name: \\*\SYSVOL Value: RequireMutualAuthentication=0,RequireIntegrity=0 Value Name: \\*\NETLOGON Value: RequireMutualAuthentication=0,RequireIntegrity=0 Also tested via registry: HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\NetworkProvider\HardenedPaths Also tested run in logged on users context and Point and Print Restrictions: Enabled. Users can only point and print to these servers: Checked. and Enter the fully qualified server names in the text box. When installing drivers for a new connection: Do not show warning or elevation prompt. When updating drivers for an existing connection: Do not show warning or elevation prompt. still the same problems. Any ideas?
  5. We use pdq from the begining. And still in love with it. The best support ever experienced. And it is not expensive. Never came across anything like this.
  6. Is this correct? I was wondering if i should add the extra Next command yes or not? ' Get the make, model, and memory from the Win32_ComputerSystem class Set objResults = objWMI.InstancesOf("Win32_ComputerSystem") For each objInstance in objResults If not IsNull(objInstance.Manufacturer) then sMake = Trim(objInstance.Manufacturer) End if If not IsNull(objInstance.Model) then sModel = Trim(objInstance.Model) End if If not IsNull(objInstance.TotalPhysicalMemory) then sMemory = Trim(Int(objInstance.TotalPhysicalMemory / 1024 / 1024)) End if Next If sModel = "TMB115-MP", "NB-TMB115-MP-P7X8" then sModel = "TravelMate B115-MP" End if Next If uCase(sMake) = "LENOVO" then Set objResults = objWMI.InstancesOf("Win32_ComputerSystemProduct") For each objInstance in objResults If not IsNull(objInstance.Version) then sModel = Trim(objInstance.Version) End if Next End If Or this way? ' Get the make, model, and memory from the Win32_ComputerSystem class Set objResults = objWMI.InstancesOf("Win32_ComputerSystem") For each objInstance in objResults If not IsNull(objInstance.Manufacturer) then sMake = Trim(objInstance.Manufacturer) End if If not IsNull(objInstance.Model) then sModel = Trim(objInstance.Model) End if If not IsNull(objInstance.TotalPhysicalMemory) then sMemory = Trim(Int(objInstance.TotalPhysicalMemory / 1024 / 1024)) End if If sModel = "TMB115-MP", "NB-TMB115-MP-P7X8" then sModel = "TravelMate B115-MP" End if Next If uCase(sMake) = "LENOVO" then Set objResults = objWMI.InstancesOf("Win32_ComputerSystemProduct") For each objInstance in objResults If not IsNull(objInstance.Version) then sModel = Trim(objInstance.Version) End if Next End If
  7. i don't have special characters in these model names TravelMate B115-MP, TMB115-MP and NB-TMB115-MP-P7X8
  8. Hi, this is a part of my existing ztigather.wsf ' Get the make, model, and memory from the Win32_ComputerSystem class Set objResults = objWMI.InstancesOf("Win32_ComputerSystem") For each objInstance in objResults If not IsNull(objInstance.Manufacturer) then sMake = Trim(objInstance.Manufacturer) End if If not IsNull(objInstance.Model) then sModel = Trim(objInstance.Model) End if If not IsNull(objInstance.TotalPhysicalMemory) then sMemory = Trim(Int(objInstance.TotalPhysicalMemory / 1024 / 1024)) End if Next If uCase(sMake) = "LENOVO" then Set objResults = objWMI.InstancesOf("Win32_ComputerSystemProduct") For each objInstance in objResults If not IsNull(objInstance.Version) then sModel = Trim(objInstance.Version) End if Next End If Want to place the new script part. is it correct placed? and i've added an extra Next, is that necessary? or should i place the script part somewher else? ' Get the make, model, and memory from the Win32_ComputerSystem class Set objResults = objWMI.InstancesOf("Win32_ComputerSystem") For each objInstance in objResults If not IsNull(objInstance.Manufacturer) then sMake = Trim(objInstance.Manufacturer) End if If not IsNull(objInstance.Model) then sModel = Trim(objInstance.Model) End if If not IsNull(objInstance.TotalPhysicalMemory) then sMemory = Trim(Int(objInstance.TotalPhysicalMemory / 1024 / 1024)) End if Next If sModel = "TMB115-MP", "NB-TMB115-MP-P7X8" then sModel = "TravelMate B115-MP" End if Next If uCase(sMake) = "LENOVO" then Set objResults = objWMI.InstancesOf("Win32_ComputerSystemProduct") For each objInstance in objResults If not IsNull(objInstance.Version) then sModel = Trim(objInstance.Version) End if Next End If
  9. Will look at this next week. Thanks. But should my script work OR have it errors? The other website topic is about a / in the name.
  10. Hi, We have a working MDT environment. I have problems injecting/installing drivers for Acer TravelMate B115 notebooks. The problem is that the wmic output gives Model: TravelMate B115-MP and another one gives TMB115-MP, NB-TMB115-MP-P7X8 And in MDT workbench i have this folder structure Acer, TravelMate B115 and here are the drivers for this model. How to get this to work so that all modelnames are getting the correct drivers for this model? In the task sequence i have this DriverGroup001 | %MAKE%\%MODEL% was thinking and should this work adding this to ztigather.wsf If sModel = "TMB115-MP", "NB-TMB115-MP-P7X8" then sModel = "TravelMate B115-MP" End if but i'm not an wsf expert so i don't know if i use the correct formatting.
  11. tried this also. not working. SCCM - OSD - PowerShell Tips: Disable Microsoft Edge First Run
  12. Hi, Has anyone managed to disable the edge welcome page? I've tried this script: https://gallery.technet.microsoft.com/Remove-the-Welcome-screen-a84c50c6 but not working using mandatory profiles.
  13. Hi, Is it working? I found also this: Create a blank file named "First Run" (no extension) in the default users profile. In a typical install the path would be 'C:\Users\Default\AppData\Local\Google\Chrome\User Data' But as we use mandatory profiles we don't have a Local folder in Appdata.
  14. Hi, SHIFT+right click or win+X, what i've done is delete the 3 folder in my default profile \AppData\Local\Microsoft\Windows\WinX, didn't find a gpo or registry item for this. program menu in twice, maybe also a folder local on you're machine. look in: C:\ProgramData\Microsoft\Windows If you ricght click on these folder, you should see it's location
  15. Thanks, but can you point me in the right direction? for you're above answer? Or do you mean, customise, and then export the registry data from HKEY_CURRENT_USER\SOFTWARE\IvoSoft\ClassicStartMenu\Settings\MenuItems7? and again....Thanks
  16. What is the name of this option in you're template?
  17. hi, thanks. Question does or can the Pinned folder be the same location as the redirected start menu? Like this: \\share\startmenu"all shortcuts" \\share\startmenu\pinned"all pinned shortcuts" Or does the pinned folder a separate (share) folder like this for example \\share\pinned And what does the MenuItems7 mean in user configuration\preferences\registry ? deleting right click startmenu items gpo %localappdata%\microsoft\windows\winx\group1,2,3 fails with error code 0x80070003 And how to hide/remove the Administrative tools from the start menu, it keeps comming back Also, how did you remove the search,desktop,edge icons on the taskbar? Thanks
  18. Hi, Thank you. I've missed that. Does anyone have a good tutorial or steps about making a Mandatory profile for Windows 10?
  19. how to remove the help menu when right click the start menu?
  20. is there a policy to disable the right click start menu?
  21. Followed this guide, but start menu isn't working(it won't display/popup)
  22. hi, where is you're guide? can you find it? thanks
×
×
  • Create New...