Jump to content


Search the Community

Showing results for tags 'frontend'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Cloud
    • Azure
    • Microsoft Intune
    • Office 365
    • Windows 365
  • General Stuff
    • General Chat
    • Events
    • Site News
    • Official Forum Supporters
    • Windows News
    • Suggestion box
    • Jobs
  • MDT, SMS, SCCM, Current Branch &Technical Preview
    • How do I ?
    • Microsoft Deployment Toolkit (MDT)
    • SMS 2003
    • Configuration Manager 2007
    • Configuration Manager 2012
    • System Center Configuration Manager (Current Branch)
    • Packaging
    • scripting
    • Endpoint Protection
  • Windows Client
    • how do I ?
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows Vista
    • Windows XP
    • windows screenshots
  • Windows Server
    • Windows Server General
    • Active Directory
    • Microsoft SQL Server
    • System Center Operations Manager
    • KMS
    • Windows Deployment Services
    • NAP
    • Failover Clustering
    • PKI
    • Hyper V
    • Exchange
    • IIS/apache/web server
    • System Center Data Protection Manager
    • System Center Service Manager
    • System Center App Controller
    • System Center Virtual Machine Manager
    • System Center Orchestrator
    • Lync
    • Application Virtualization
    • Sharepoint
    • WSUS

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Location


Interests

Found 4 results

  1. Hello, I am a new forum member and also fairly new to SCCM, MDT and Frontends etc as well. First I want to say that I am very thankful for all the great How-to´s and other information that can be found in here. It has helped me a lot, to say the least. :-) Thank you! I am installing a Lab environment just to catch up things faster with the real SCCM environment at work. The servers in Lab environment are one DC and one CM server. CM server has MDT installed. MDT is working fine, that means that I can take reference images the way I want and then implement them to SCCM. SCCM is also working just fine, I have made task sequences for win7 and win10 and with the help of PXE boot I am able to install new operating systems. All services seems ok. Pretty happy with that but it´s all thanks to this forum! :-) But of course I want to learn more...so now I want to implement Pretty Good Frontend as well! I think it is a really good feature to have in an environment. But....it´s not that easy it seems. Been reading a lot of information about it and has come to the point that I feel I really don´t have a clue what to do or what steps to take. I would really like to get a Step-by-step How-to guide that will explain everything about getting it in place. The How-to´s I´ve found is the instructions found documented for Pretty Good Frontend but I am stuck. Actually it feels like my head will explode any second because of days of extensive searching about it. Maybe I am looking at the wrong places, I don´t know. As you can see on the picture I want the frontend to look just as it is but I want it to fetch AD information and present it in the HTA. Also I want the system to add computer name suffix where it always starts with either Laptop or Workstation and then adds the serial number or anything that will separate them in the system. For example: Laptop+Serialnr would be "Laptop-12345678" I want to be able to put the computer in any OU I want if needed and I want to be able to choose what OS Image to be installed. So what I am asking is if any of you guys can guide me to simple hands-on information that will just get me through the steps that has to be taken to get all of these things working? If so I would be more than happy! If there isn´t such a thing as a Step-by-step guide to be found elsewhere that shows each step in a very simple way I want to ask if anyone in this forum is keen on making one? For me this seems to be extremely complex and I can´t get the things I am reading about it transformed to anything I understand.
  2. I am using the CM12 bitlocker hta and want to incorporate software installation into it. I have a task sequence variable that links up to my sccm2012 repository to install firefox if the task sequence variable OSDFirefox = True My checkbox input looks like this: <input type="checkbox" name="Firefox" value="True" /> Firefox Then I have some vbscript stating: If Firefox.checked Then oTasksequence ("OSDFirefox") = "True" End if However this was not enough as the variable still was not being exported out.. In my javascript I have set to return a confirmation message which should tell me if the value is true or not. Firefox= document.getElementById("Firefox").checked; When I test these script my value for Firefox comes up as Yes all the time. What am I doing wrong?
  3. I am trying to add step to my HTA file, an extra OU value if Windows 8 checkbox is checked (OU=Windows8,) in front of the OU path that gets outputted (OUName). Currently my drop down contains the following: td colspan=1 class="taskTableLeftCell">OU</td> <td class="taskTableSpanSecondAndThirdCell"> <select name="OUName" id="OUName"> <option value="LDAP://OU=Administrative,OU=Workstations,DC=imo-online,DC=com" >Administrative</option> <option value="LDAP://OU=Development,OU=Workstations,DC=imo-online,DC=com" >Development</option> <option value="LDAP://OU=External,OU=Workstations,DC=imo-online,DC=com" >External</option> <option value="LDAP://OU=IT,OU=Workstations,DC=imo-online,DC=com">IT</option> <option value="LDAP://OU=Restricted,OU=Workstations,DC=imo-online,DC=com">Restricted</option> <option value="LDAP://OU=Sales,OU=Workstations,DC=imo-online,DC=com" >Sales</option> <option value="LDAP://OU=Service_Computers,OU=Workstations,DC=imo-online,DC=com" >Service Computers</option> </select> My checkbox says the following <input type>"checkbox" id="mycheck" value"OU=Win8,"/> Then I have my Java saying: function Win8() { var x=document.getElementById("myCheck").value; document.getElementsById("Win8").innerhtml=x; } The other java code is below which adds these 2 ou values together: var OUDrop = document.getelementById("OUName") + document.getElementById("Win8"); When I try to run this and proceed in my script I get an answer- Unable to get property 'undefined' of undefined or null reference. Not sure what I am doing wrong.
  4. Has anyone had luck adding OU selection to the CM2012 Bitlocker FrontEnd HTA? I have been trying for some time now without luck. I have a drop down with multiple selections which link to this code below to pass the variable over. I also add options in my apply network settings which is show in the attached image. I have this: If ADOU.value = "1" Then oTSEnvironment("swn_ADOU") = "Administrative" 'msgbox("LDAP://OU=Administrative,OU=Workstations,DC=online,DC=com: " & oTSEnvironment("swn_ADOU"))' ElseIf ADOU.value = "2" Then oTSEnvironment("swn_ADOU") = "Developement" 'msgbox("LDAP://OU=Development,OU=Workstations,DC=online,DC=com: " & oTSEnvironment("swn_ADOU"))' ElseIf ADOU.value = "3" Then oTSEnvironment("swn_ADOU") = "External" 'msgbox("LDAP://OU=External,OU=Workstations,DC=online,DC=com: " & oTSEnvironment("swn_ADOU"))' ElseIf ADOU.value = "4" Then oTSEnvironment("swn_ADOU") = "IT" 'msgbox("LDAP://OU=IT,OU=Workstations,DC=online,DC=com: " & oTSEnvironment("swn_ADOU"))' ElseIf ADOU.value = "5" Then oTSEnvironment("swn_ADOU") = "Restricted" 'msgbox("LDAP://OU=Restricted,OU=Workstations,DC=online,DC=com: " & oTSEnvironment("swn_ADOU"))' ElseIf ADOU.value = "5" Then oTSEnvironment("swn_ADOU") = "Sales" 'msgbox("LDAP://OU=Sales,OU=Workstations,DC=online,DC=com: " & oTSEnvironment("swn_ADOU"))' ElseIf ADOU.value = "5" Then oTSEnvironment("swn_ADOU") = "Service Computers" 'msgbox("LDAP://OU=Service_Computers,OU=Workstations,DC=online,DC=com: " & oTSEnvironment("swn_ADOU"))' End If
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.