HTA Tools?

Are there any HTA tools written with PowerShell?   I want to create a custom HTA file within CM2012 to do our Windows 7 deployment and I know PowerShell so I wanted to use a PS HTA.   
And either way can any of you direct me to a useful HTA tool?  
mqh7

I haven't actually tried to use PowerShell during OSD, so I don't have an answer for your first question (but I would guess yes, assuming you can get PowerShell to display a GUI [not sure if you can]).
As for your second, here's an example of a HTA solution you can use during OSD (I haven't used this myself, but it looks to be pretty friendly):
http://blog.coretech.dk/kea/coretech-hta/
Don't retire TechNet! -
(Don't give up yet - 12,575+ strong and growing)

Similar Messages

  • How do I reinstall the HTA program on a system that's running Windows 7 Pro?

    I’m writing on behalf of my father, a small business owner that relies extensively on his ability to utilize the tools via the GUI interface for his HP printer. 
    He contacted HP and they informed him that an HTA program is required to be installed on his system in order for the HP software to work. 
    This program, HTA (mshta.exe) should be installed with the most recent IE iteration on the system. He has IE 9.0. 
    His profile has protected Admin privileges however he is unable to run the HP software when he double clicks on the icon. 
    However, I have full admin privileges but when I attempt to launch the program, it opens up two notepad files with HTML code inside. 
    I check the “file types” list under the folder options and found that “.hta” was in the list but was associated to notepad vice the normal HTML application program. 
    I made and attempt to associate it to the HTA.exe in the sys32 folder but the HP software continues to open up in notepad. 
    I’ve scoured the internet and Technet but haven’t been able to find any articles on how to resolve this. 
    I have a mitigation plan in place to get him through while I find answers, but in the world of a small business…time is money. 
    Thanks for understanding,
    Regghen
    

    Hi,
    Have you tried
    right-clicking the HP files and choose “open with…”?
    Click Start>Default Programs>Associate a file type or protocol with a program, check the Current Default for .hta. The default program to open
    .hta files should be Microsoft (R) HTML Application host (mshta.exe).
    Use
    System File Checker tool to scan the system.
    You may try installing the HP software on another computer and see if the issue persists.
    Tracy Cai
    TechNet Community Support

  • Right Click tools for SCCM 2007 issue

    We have SCCM 2007 R2 with Right click tools installed (I know this is not a direct SCCM query but linked to it and thought I might try my luck here)
    I use the "ConfigMgr Collection Tools - Add Systems to a collection" option within Right click tools a lot
    However in the last few days it keeps failing a lot with the following error message
    Line:68
    Char: 5
    Error: Object required: 'objDialogWindow.document.body'
    The Addcoll.hta looks like the following
    Line 68: LineobjDialogWindow.document.body.style.fontFamily = "Helvetica"
    Line 69: objDialogWindow.document.body.style.fontSize = "11pt"
    Line 70: objDialogWindow.document.writeln "<html><body>Adding PCs to " & collName.Value & " </body></html>"
    Line 71: objDialogWindow.document.title = "Please wait."
    Line 72: objDialogWindow.document.body.style.backgroundColor = "dodgerblue"
    Line 73: objDialogWindow.document.body.style.borderStyle = "none"
    Line 74: objDialogWindow.document.body.style.marginTop = 15
    Line 75: AddToCollection ComputerList.value, CollID.value, ss.Value, objDialogWindow
    Line 76: objDialogWindow.Close()
    Line 77: self.ResizeTo 400,550
    Has anyone had this issue and if so how have you resolved it?

    You need to contact the author of the tool and get them to help out. This is not a CM07 issue.
    However having said that it look like you are having a problem with the font.
    http://www.enhansoft.com/

  • Cannot execute litetouch.wsf from .hta

    Hi,
    I am working on a Windows 7 deployment via MDT 2010 Beta2. Until now we have been deploying Windows XP using MDT 2008.
    We have 'always' used a .hta-menu from which the user of the mdt-media can choose between wiping the disk, starting the installation (basically executing the litetouch.wsf) and a few other things.
    I want to keep using this menu, but when I try executing the litetouch.wsf from WinPe 3.0 I receive different errors, regarding 'Class Not registered', 'Media Write Protected' and a few others.
    I read that in WinPE 2.0 you had to install the XML-components to make executing wsf from within PE work. What is the trick with WinPE 3.0?
    Thanks in advance!
    /Michael

    It is generated by MDT 2010.
    I believe the script never even starts.
    Part of the .hta i pasted below. I have highlighted the line that is failing. I have tried running the script via wscript.exe.
    If I run the "x:\Deploy\Scripts\LiteTouch.wsf" from a command prompt within the WinPE the script runs just fine.
    Sub RunScript
        If UserOption(0).Checked Then
     Set objShell = CreateObject("Wscript.Shell")
            objShell.Run "x:\Deploy\Tools\slet.cmd"
            window.close()
        End If
        If UserOption(1).Checked Then
     Set objShell = CreateObject("Wscript.Shell")
     objShell.Run "x:\Deploy\Scripts\LiteTouch.wsf"
            window.close()
        End If
        If UserOption(2).Checked Then
            Set objShell = CreateObject("Wscript.Shell")
            objShell.Run "wpeutil reboot"
            window.close()
        End If
    End Sub

  • ODBC access from HTA script fails

    I am trying to connect to Oracle via ADO from a HTA(HTML Application) script.
    I have trying both DSN and DSNLESS connections, see code below.
    I have also tried the Microsoft ODBC for Oracle, Oracle 9i ODBC and Oracle10g ODBC drivers.
    I have tried doing the connection from both vbscript and javascript.
    Everything I try gives me the "[Microsoft][ODBC Driver Manager} Driver's SQLSetConnectAttr failed" error.
    Any help will be greatly appreciated!
    *** CODE ***
    <script Language="JavaScript"><!--
    function dotheconnectionx()
    var sConnect="DSN=prod2;UID=tts;PWD=tts";
    var objConnx= new ActiveXObject( "ADODB.Connection" );
    objConnx.Open( sConnect );
    alert(objConnx.errors.count);
    alert(objConnx.errors(0).description);
    //--></script>
    <script language="vbscript">
    Dim objConn
    Dim rsetQuery
    Dim tmpSQL
    Dim tmpDSN
    tmpDSN="DSN=prod2;uid=tts;pwd=tts"
    Dim strConn
    strConn="Driver={Microsoft ODBC for Oracle}; CONNECTSTRING=prod; uid=TTS; pwd=tts;"
    sub dotheconnection
    Set objConn = CreateObject("ADODB.Connection")
    objConn.ConnectionString = tmpDSN
    objConn.Open
         If objConn.errors.count <> 0 Then
              alert(objConn.errors.count)
              alert("problem connecting to the database")
              alert(objConn.errors(0).description)
              alert(objConn.ConnectionString)
         end if
    end sub
    </script>
    <body onload="dotheconnection();">

    This is running off my laptop for development and I have several version of the Oracle client installed. Specifically 8, 9 and 10.
    I can connect via ODBC from a query tool using the specified DSN and can connect to the specified database using several Oracle tools.
    I haven't tried doing this from a VBS but I will try that to see if it works or gives any diagnostic info
    I tested as a vbscript .VBS and get the same results and the .HTA
    *** vbscript code ***
    Dim objConn
    Dim rsetQuery
    Dim tmpSQL
    Dim tmpDSN
    tmpDSN="DSN=prod2;uid=tts;pwd=tts"
    Dim strConn
    strConn="Driver={Microsoft ODBC for Oracle}; CONNECTSTRING=prod; uid=TTS; pwd=tts;"
    sub dotheconnection
    Set objConn = CreateObject("ADODB.Connection")
    objConn.ConnectionString = strConn
    objConn.Open
         If objConn.errors.count <> 0 Then
              Wscript.echo objConn.errors.count
              Wscript.echo "problem connecting to the database"
              Wscript.echo objConn.errors(0).description
              Wscript.echo objConn.ConnectionString
         end if
    end sub
    dotheconnection()
    Edited by: JL Hainsworth on Mar 10, 2009 1:32 PM

  • DaRT Tools in SCCM Boot Image

    I'm looking for a way to integrate DaRT into my SCCM/PXE environment.  I'm not using MDT integration, but want to give technicians the option to start an OS deployment or go to DaRT, all from a network boot.  Originally, I had my DaRT boot images,
    one for each OS that we support, but I found that the systems were booting into the DaRT images instead of the SCCM boot images.  Does anyone have any input on what they do or how to inject the DaRT tools into an existing boot image?  (I assume that
    if the tools were present, I could just add a variable to my HTA to skip all steps except for a winrec step)
    Best, Jacob I'm a PC.

    Take a look at this post of Johan:
    http://www.deploymentresearch.com/Research/tabid/62/EntryId/131/Adding-DaRT-8-1-from-MDOP-2013-R2-to-ConfigMgr-2012-R2.aspx
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Install glassfish tools in Luna M7

    Hi all
    I installed the latest eclipse Luna milestone and tried to install glassfish tools for eclipse but it failed due to a "missing dependency"
    > Cannot complete the install because one or more required items could not be found.
    Software being installed: GlassFish Tools 6.5.0.201405081811 (oracle.eclipse.tools.glassfish.feature.group 6.5.0.201405081811)
    Missing requirement: GlassFish Tools 6.5.0.201405081811 (oracle.eclipse.tools.glassfish 6.5.0.201405081811) requires 'bundle org.apache.ant [1.8.4,1.9.0)' but it could not be found
    Cannot satisfy dependency:
    From: GlassFish Tools 6.5.0.201405081811 (oracle.eclipse.tools.glassfish.feature.group 6.5.0.201405081811)
    To: oracle.eclipse.tools.glassfish [6.5.0.201405081811]
    Asked at eclipse here : Eclipse Community Forums: Web Tools Project (WTP) &amp;raquo; can't install latest glassfish tools on luna m7
    Apparently the issue is that Luna comes with ant 1.9.2
    Any workarounds ? Any plans for an update ?
    Thanks

    You are referencing Kepler repository when installing into Luna. You need to use the following URL instead:
    http://download.oracle.com/otn_software/oepe/luna/

  • Unable to capture audio from BlackMagic HD Extreme via Voice Over tool

    Hi !
    I'm trying to capture audio via my BlackMagic HD Extrem card using the Voice Over tool in FCP6, but I can't, no audio is incoming.
    I can ingest audio with video using log and capture, then I know my card and my cables are working.
    I tried to set the BM card as audio input in my Audio's System Prefereces Pane, but it isn't working either.
    I've been looking on the BM website, but I found nothing.
    Can you help me ?
    Thx

    Thanks for the reply.
    Looking at system preferences I found that audio input was set microphone. Don't know how it happened. I switched it to DeckLink and now FCP displays 16 input channels in Log and Capture dialog. I didn't try to capture yet but I think it solved the problem, because before I had only two channels displyed.

  • Unable to capture the adf table column sort icons using open script tool

    Hi All,
    I am new to OATS and I am trying to create script for testing ADF application using open script tool. I face issues in recording two events.
    1. I am unable to record the event of clicking adf table column sort icons that exist on the column header. I tried to use the capture tool, but that couldn't help me.
    2. The second issue is I am unable to capture the panel header text. The component can be identified but I was not able to identify the supporting attribute for the header text.

    Hi keerthi,
    1. I have pasted the code for the first issue
    web
                             .button(
                                       122,
                                       "/web:window[@index='0' or @title='Manage Network Targets - Oracle Communications Order and Service Management - Order and Service Management']/web:document[@index='0' or @name='1824fhkchs_6']/web:form[@id='pt1:_UISform1' or @name='pt1:_UISform1' or @index='0']/web:button[@id='pt1:MA:0:n1:1:pt1:qryId1::search' or @value='Search' or @index='3']")
                             .click();
                        adf
                        .table(
                                  "/web:window[@index='0' or @title='Manage Network Targets - Oracle Communications Order and Service Management - Order and Service Management']/web:document[@index='0' or @name='1c9nk1ryzv_6']/web:ADFTable[@absoluteLocator='pt1:MA:n1:pt1:pnlcltn:resId1']")
                        .columnSort("Ascending", "Name" );
         }

  • MSI Forum HQ USB flashing tool!!!

    Hi guys,
    We the forum team have developed  a new way of flashing.
    You no longer need a floppy or anything, just an USB-stick.
    The tool has been tested together with MSI and as far as we have done our testing, there are no problems at all.
    As long as the USB-stick is FAT or FAT32 formatted!
    However, flashing is allways risky, so if it goes bad it's your own fault, but that goes for all flashing you do.
    This tool is intended to flash MSI retail motherboards and laptops,
    but if needs you can use any other machine to prepare the necessary stuffs and the USB stick there,
    before move the USB stick to the msi product that you want to flash.
    The way it works is simple: Download the package and download the BIOS from the MSI website that you want to flash.
    The rest is straight forward.
    Make sure that your board is set to be able to boot from USB.
    So turn on USB Legacy Support in the BIOS.
    Boot and press F11 to get the boot-popup and select your USB-device to boot.
    (some boards have a different key, like K8N Master uses ESC for the boot-menu)
    What ever you do, make sure you read all warnings!
    The forum nor MSI is responsible if it fails for you.
    Nor is this software supported by MSI technical support!
    Please report problems/buggs if you find them.
    currently supported OS ( both 32 & 64 bit):
    Windows NT, Windows 2000, Windows 2003, Windows XP, Windows Vista, Windows 7 (also Windows in Virtualbox under Linux!)
    (all kind of versions)
    NOTE: If you are having problems getting your USB device to boot correctly, you may need to format it correctly as the geometry data may be incorrect. You can do that by pickup option "Fix My USB key" from the Tool or by using >>> THIS <<< tool here! For future usage you can skip this step, it need to be done only once if your stick need adjustment.
    This topic is for discussion of and help with the USB flash tool only. If you have a problem with your PC and need help then do not hijack this topic, please start your own new topic in the correct area of this forum!
    NEW! >>> Read the comprehensive user guide here! <<<
    The download links are listed below:
    https://www.dropbox.com/s/yu8imcr1tsopm24/MSIHQ%20Tool%201.26h%20Installer.rar?dl=0

    Quote from: max-sever on 25-May-07, 01:29:21
    Hi!
    I'm have problem with antivirus program too.
    Dr.Web
    C:\Temp\x863\bossmsi.exe - &#1080;&#1085;&#1092;&#1080;&#1094;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085; Trojan.Blakhal
    Kaspersky Anti-Virus
    bossmsi.exe - &#1080;&#1085;&#1092;&#1080;&#1094;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085; Backdoor.Win32.Iroffer.af
    This file is a antivirus testing program?
    Hi Max,
    "This file is a antivirus testing program? "
    yes, the latest version accidentally really become a test for any AV....
    in latest 1.13b Avast! no more report false positive,
    but all others AV software starting reporting a different false positive results:(all AV listed didn't report false positive problem in a provisional version) Avast! was fixed and no more report the false passivity and passed, but all other AV software started to be a lot confused...
    Kaspersky Anti-Virus - Proactive Defense Warning: Riskware detected.
    Kaspersky Anti-Virus 2nd ID - Backdoor.Win32.Iroffer.af
    Dr Solomon's:  probably found Zafi.D.Virus
    Symantec: Bloodhound.Overpacked / * Overpacked when a potentially unknown virus is found using Symantec Bloodhound technology */
    Panda: Win32:Trojan-gen.(Mytob.U.Mod)
    Mcafe: Worm.W32/Bakain
    Dr.Web: Trojan.Blakhal
    Bit.Defender: Trojan.JS.Obsq.Gen
    Just to clarify one more time, all things listed are false alert coused and exist in latest version only due Avast! fix.(1.13b)
    didn't continue to test with rest of AV...
    only Avast! and NOD32 report no problem detected.
    in 1.13a all false positive listed above doesn't exist, but only Avast! report false positive.
    Hoverer, the wave of false positive mess has been resolved along with Avast! false positive as well.
    New version is ready, 1.13c:
    - fixed false positive wave which confusing most of AV software. (all AV do not report any problems anymore)
    - fixed 3 minor bugs:
           * after finished work the tool do not quit normal as expected and hang instead, that happend in x32bit OS only when used has been asked for reboot and answered with "No". e.g. in described specified case.
           * 4th mainboard filter report positive results in some Biostart mainboard and this cause tool to false ID some Biostar board as MSI one.
           * added missing drive letter as USB key choice ("I")
    Download location in a the 1st post of this topic.

  • Polygonal lasso tool not working with stylus on Surface Pro 2

    Hi guys,
    I'm new here so please bare with me if I'm posting in the wrong place or don't make immediate sense.
    Hardeware / software used: surface pro 2 and I'm running photoshop CS5.
    Problem is a fairly basic one: I am trying to make basic selections using the polygonal lasso tool (using the stylus that comes with the tablet) but it simply will not work. All I get when I touch the stylus to the screen is the circle that appears then fades. If I attach the keypad and try using that then it works no problem at all.
    Does anyone have any ideas as to whether there is a particular setting that I need to switch on or off e.g. something relating to pressure sensitivity (although not sure why this would affect this particular selection tool)?
    I've searched the web and come up with nothing so far so any help is greatly appreciated!
    Thanks for your time
    Scott

    same problem on surface pro 3 !!!!
    and i think quite significant, for lot of artists using polygonal lasso a lot (including me). How come that the stupid surface cannot work properly

  • Text is running together on some pages and not others. i've tried no squint and playing around with text options in tools. I can't strike a good balance.

    I can't seem to figure out how to have a full screen experience with larger text and everything is in proportion. Either the right end of lines are chopped off, or lines of text are running into each other and out of boundaries.
    == This happened ==
    Not sure how often
    == I installed FF earlier this evening. I've had FF before and my gripe was the inability to set a certain magnification. I found the no squint add on and it seems very good, but somewhere I'm getting stuck. I've been fiddling with no squint, font options in tools and size and resolution settings for my monitor.

    i'm also having major CPU problems w/ FF 29.0.1. when i restart the app it calms down again but after loading tabs it steadily climbs up to 100% after not too long. i have checked out the 2 CPU links/articles above and do all the basic troubleshooting and tips, but with all the FF tools & add-ons isn't there some sort of CPU monitor that has the ability to display which extensions/scripts are hogging the CPU? Activity Monitor on Mac just shows the total used by the app. it's impossible in my case to efficiently disable dozens of add-ons & scripts, restart, and test each one by one b/c it can take several hrs before the CPU starts to spike high again. i have no time for this.
    thanks

  • Problem with "--21474836,,(" in my text tools

    i have a CS4 on Windows7 64 Professional Polish ...
    this text: --21474836,,(
    shows up in the text tool box - it disturbs my work
    do you know how to fix it?
    thx for help

    Reset the panels, trash the PS prefs and also look into your system's language & region settings for the default value unit and delimiter setting. Also check for "bad" fonts.
    Mylenium

  • Open and connect in OBI 11.1.1.5 admin tool fowwoling OBE Upgrade

    I installed OBI11.1.1.5 on Redhat 5.2 and the admin tool on a windows. In this two machine I have OBI 10 server and admin tool installed as well. The OBI 11 components are all up running as I can access them such as EM and represention service.
    Following OBEhttp://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/bi/bi11115/upgrade/upgrade_to_11g.htm?print=preview#t3 .I upgraded our 10g rpd and catalog and see the repository saved in instance_home, and verified that the default is RPD sh20110903_BI002.
    Next step in the OBE, I verify Reposiotory Metadata. I launched the admin tool, opened inline. In the generated dialog box, I entered the password in defined in the update script as Repository Password, and used weblogic login in User/Password. All other fields are blank. That is all I can do in the dialog box, but the Open buttone is always grey. I think at least one available repository should be listed in the list box at the bottom, but it was empty.
    Then I tried to create a new repository. In step 2 Select Data Source, I choose ODBC 3.5 and use a valid system DSN, but got Error : The connection has failed.
    I tried also use Connection Type OCI 10g/11g. IN the Data Source Name I used a valid netservice name defined in a Oracle client's Oracle_HOME. But still got Error : The connection has failed.
    Questions
    1) How can make the Open button active in the Open inline RPD dialog box?
    2) Why the valid System DSN failed to connect in 11g admin tool. It is OK in 10g admin tool and ODBC configure
    3) How to make Admin Too; sees the tnsnames definition. Should I copy the tnsnames.ora file to somewhere under Admin Tool installation directory?
    Many thanks.

    Thanks. The post appares make sense. I opened my user.sh file and has 2 questions:
    1) There are 32bit section and 64 bit section, and it states that 32 bit server must work with 32 bit client, so is for 64 bit. In my case, the clients are most likely 32 bit windows (browsers and admin tool), but the server is installed on Redhat 64 bit. Is this a problem? How do I know if my OBIEE iis running 64 or 32 bit?
    2) All entries in the user.sh file are commented out. Then what file is used to in the current OBI11, it is started automatically after the installation.

  • Photoshope Elements when selecting an action, the paint brush tool doesn't work and system keeps freezing, then catching up every 30-45 seconds

    I have been having this problem with elements ever since the last OS upgrade, but it wasn't all the time and it wasn't very bad. Now, I have upgraded my macbook again, and I cannot even edit a photo!! I open the photo, choose an action, say "smooth skin", then choose the paint brush, I start to "paint" over their face and it won't paint a line, I have to keep clicking it, click - it paints, move brush, click again - it paints. Plus, every time I choose a tool or an action, it freezes for about 10 seconds, then catches up to what I am doing, 30 seconds later, it freezes again. HELP!! I have 8 sessions to finish editing by this weekend!! I just want to cry!!

    Try deleting the prefs and the saved application state:
    A Reminder for Mac Folks upgrading to Yosemite | Barbara's Sort-of-Tech Blog

Maybe you are looking for

  • [JS][CS3] Selection Menu with images

    I have no idea it this is possible, but I have written this code at the start of a script to select a function within the script: myDialog = app.dialogs.add({name:"Catalogue Selector"}); with(myDialog)         with(dialogColumns.add())           with

  • Back order rescheduling based on the order date

    Hi, Presently, the back order scheduling is based on the order numbers (A-Z) TO customers. We want it to be by Order date sequence oldest to newest. How can I achieve this? Regards, SS

  • How to call linux command ?

    hi all, I wanna make java application which display the ouput of linux command (eg. ps -ax output in JTextArea). The problem is how to call "ps,kill,etc" ?

  • Maverick upgrade: Can't create recovery partition and infinite loop

    Hi, I'm using MacBook Air Mid 2011 with 256 GB SSD (~30 GB free disk space) running MacOS 10.7.4. So far I never followed the suggestion to upgrade to MacOS Maverick but yesterday I thought, OK, let's do it. After the first reboot the setup started w

  • Different templets for the photo albums in Revel similar to  photoshop elements 8

    I used a feature in Elements 8 for my Photo Albums that had different templets that made the albums take a different look, and also I could choose one that showed the file number by the photo. Is this feature available in Revel? If so, how do I make