Sunday 30 November 2014

HAT Notes

1. Before you run your first HTA application, make sure you insert a restart computer with WINPE image that you loaded from windows installation disk. The inbuilt x64 or x86 boot image wont support HTA, which will cause fails to run your scripts.

2. To hide the current task sequence window in VBS:
Set oTSProgressUI = CreateObject("Microsoft.SMS.TSProgressUI")
oTSProgressUI.CloseProgressDialog
Set oTSProgressUI = Nothing

3. To show the task sequence window when you quit HTA window:
objOSD("ALLOWOSDBUILD") = "YES"
window.close()

4. To Set up a variable for your use through the whole task sequence, simply add a task variable in your task sequence.

5. To access that task sequence variable and any other :
Set objOSD = CreateObject("Microsoft.SMS.TSEnvironment")
objOSD("TaskType")="ReImageComputer"

6. Add task variables before HTA, set variable values use VBS then run tasks based on variable value by set up the task running conditions.

7. You can put all the css stylesheet and other pictures in ur customized HTA packages. Just like a html webpage.

No comments:

Post a Comment