Jump to content

Recommended Posts

Posted

Hi,

 

Since moving to a new tenant we have moved pretty much off prem. Just using a server for dhcp/DNS.

 

Soooo i am looking to deploying some urls to a group of users via INTUNE. If anybody has done this i would very much appreciate a step by step please.

 

 

Thanks !

Posted
majority of staff are chrome users.

 

Not sure if it helps, but we create a 'intranet' style home page in Google sites with links to users most used URL's. Then set to open at start up for the users we choose via Google Workspace. Works really well, simple to use and to update and looks good.

  • Thanks 1
Posted (edited)

Set WshShell = WScript.CreateObject("WScript.Shell")
strDesktop = WshShell.SpecialFolders("Desktop")
Set oShellLink = WshShell.CreateShortcut(strDesktop & "\google_homepage.lnk")
oShellLink.TargetPath = "https://www.google.co.uk"
oShellLink.IconLocation = "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe, 0"
oShellLink.Description = "Google Homepage"
oShellLink.Save

Good old VBS script. Package as a WIN32 and install as user with a detection based on your filename. I detest doing this backwards scripting but in the end this is where we are at. What ive actually done is create a SYSTEM WIN32 app that installs a scheduled task, the scheduled task runs a master batch file upon user logon. This batch file is updated when I need to run more hacky fixes under a user context. Since it is a system install these can be pre provisioned so everything works straight off the bat.

Edited by KK20
Posted
Not sure if it helps, but we create a 'intranet' style home page in Google sites with links to users most used URL's. Then set to open at start up for the users we choose via Google Workspace. Works really well, simple to use and to update and looks good.

 

This. Easy to update, easy to add to, means everyone is used to going to a single point to get things so you can build on it. URLs as shortcuts are a bit retro IMO.

Posted
EssentialRug's idea is a good one if google allows, if needed im more then happy to help as a client to help/assist to deploy usually my recommendation is main links desktop and then other links as bookmarks all depends what you are looking for, can also get some form off documentation written up for future use.

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...