- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2019 04:12 AM
Hi -
I remember there was a background script that i could run (gs.datetime.util(); --> something like that) to get the current systems Date/Time.
Does anyone know what that exact script maybe? anything would help. Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2019 04:16 AM
Hi
var gr = new GlideDateTime();
gs.print(gr)
In background script it gives a current date and time
Regards
Raja
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2019 04:16 AM
Hi
var gr = new GlideDateTime();
gs.print(gr)
In background script it gives a current date and time
Regards
Raja
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2019 04:18 AM
That works, thanks a lot.