
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-14-2014 06:56 PM
I like how LS5 shows the home folder and the logon script. I want to create a custom action on the User pages that will open the home folder in Windows explorer. Is there an Action Parameter that will allow me to do this easily? If not, what's the best way to do this?
Thanks,
Jono
Thanks,
Jono
Labels:
- Labels:
-
Custom Actions
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-11-2015 01:16 PM
Yes!! I have been looking for this. Thank you so much

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-14-2014 07:12 PM
I found a solution.
Here's the action:
Here's the VBS named homeDir.vbs:
I hope it's useful to some.
Jono
Here's the action:
{actionpath}homeDir.vbs "{cn}"
Here's the VBS named homeDir.vbs:
If WScript.Arguments.Count = 1 Then
struser= WScript.Arguments(0)
Set objUser = GetObject("LDAP://" & struser)
strHD = objUser.Get("homeDirectory")
Set shell = wscript.CreateObject("Shell.Application")
shell.Open strHD
end if
I hope it's useful to some.
Jono
