How do I create a custom screen to show after a person logs in we are using windows 7

I have been asked to create a custom welcome screen that would load after a person logs into their computer. This screen is to have links to applications.  But I need this to show after they log in and before they see their desktop. and I
need it to be full screen size.
this is mandatory:
I need this to show up AFTER people have logged in, and b4 they see their Desktop.  auto adjustment to fill the screen  and the screen will have multiple images with them being hyperlinks to the various applications. The kicker is we
are running windows 7.  Of course one of the links will go to the desktop.(basically shut down the window screen)
I seem to recall there is a way of doing this using group policy to trigger a screen and possible using HTA or VB6 method or a scripted page but I'm not sure how to accomplish this...
This is coming from upper upper management  and they have it mocked up in access 2013.
How do I do this or even accomplish this screen for windows 7.
PS:
I realize that windows 8/8.1 has this type of thing built in, but the company is NOT ready for windows 8/8.1

I built a System Message HTA for my previous employer that was used in a computer lab setting. It was a nice way to inform the users about things happening in the lab, as well as a nice way to ensure people knew who to contact if there were problems.
The HTA lived on a network UNC and each computer had a shortcut to the HTA in their All Users Startup folder (C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup). While you could push the shortcut with GPP, likes the others recommended, that's
about all you should do with Group Policy. This was neat - I had the HTA run custom .cmd files (in a hidden window) when it loaded (the Windows_onLoad subroutine) and then when it was closed by the user (button press that called an ExitProgram subroutine).
This allow me to capture who was logged on, how long the HTA was open, and what computer they were using. In a computer lab such as that one, it was nice to have additional way to track who was using what computer and when. Good luck and let us know if there
are any more questions - I really enjoyed that project.
Edit: Added additional info.

Similar Messages

  • How would I create a screen with links after a person logs into their computer?

    I have been asked to create a custom welcome screen that would load after a person logs into their computer . This screen is to have links to a couple of items.
    but I need this to show after they log in and before they see their desktop.
    How do I do this or even accomplish this? 

    According to your description, it really seems like a start screen in Windows 8\8.1, after user logs on to the system, he will first see a "start screen" with tiles (links to an App) on the screen, then he can manually swith to the classic desktop if he
    want.
    But in Windows 7, I never saw this kind of settings, for VB6 and HTA page, seems more related with development, if so, I suggest you post in this forum
    Scripting Forum
    http://social.technet.microsoft.com/Forums/scriptcenter/en-US/home?category=scripting
    and VB Forumhttp://social.msdn.microsoft.com/Forums/en-US/home?forum=vbgeneral
    Regarding to a trigger when a user logs on, you can refer to the following link
    http://www.grouppolicy.biz/2010/01/how-to-schedule-a-delayed-start-logon-script-with-group-policy/
    or
    http://technet.microsoft.com/en-us/library/cc758918(v=ws.10).aspx
    NOTE
    This
    response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you.
    Microsoft
    does not control these sites and has not tested any software or information found on these sites.
    Yolanda Zhu
    TechNet Community Support

  • How can I create a custom data type that is a 2D array of string by using TestStand API?

    Hi all,
    I'm new in TestStand:
    I'm able to create a custom data type that is a 1D array of string but I cannot find the way to create a 2D array of string.
    Can anyone help me?
    Thank you in advance.
    Federico

    I made it!!
    Indeed my 2D array is an item of a container:
    /*  Create a new container */
    RunState.Engine.NewPropertyObject(Locals.NewDataType,PropValType_Container,False,"",0)
    /*  Create an array of strings as item of the container */
    Locals.NewDataType.NewSubProperty("Array_2D",PropValType_String,True,"",0)
    /*  Reshape the array as an empty 2D array */
    Locals.NewDataType.GetPropertyObject("Array_2D",0).Type.ArrayDimensions.SetBoundsByStrings("[0][0]","[][]")
    being:
    NewDataType a local property (type Object)
    Attachments:
    AddCustomTypeAndCreateFileGlobals.seq ‏11 KB

  • How to automatically create the custom migration scripts after recreating SSMA project?

    How to automatically create the custom data migration scripts after recreating SSMA project?
    There is number of tables ( big tables with BLOBS)  which I want to set up automatically to be migrated with custom migration scripts (replacing e.g. attribute named "FILE" with "TO_BLOB('') AS FILE" ).
    So the question is how to open MB file (I think that it should be standard db of some destktop RDBMS) ? 

    Hi Roman.Pokrovskij,
    According
    to your description, we can use SSMA tool to migrate data from one database (including Access, Oracle and so on) to SQL Server via GUI or the scripts. There is an example about migrating Access database to SQL Server via the
    custom migration scripts, you can review refer to them.
    <?xml version="1.0" encoding="utf-8"?>
    <ssma-script-file xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="C:\Microsoft SQL Server Migration Assistant for Access\Schemas\A2SSConsoleScriptSchema.xsd">
    <config>
    <output-providers>
    <output-window suppress-messages="false"
    destination="stdout"/>
    <upgrade-project action="yes"/>
    <data-migration-connection source-use-last-used="true"
    target-server="target_1"/>
    <progress-reporting enable="false"
    report-messages="false"
    report-progress="off"/>
    <object-overwrite action="skip" />
    </output-providers>
    </config>
    <servers>
    <!-- Server definition for Sql server target server-->
    <sql-server name="target_1">
    <sql-server-authentication>
    <server value="$SQLServerName$"/>
    <database value="$SQLServerDb$"/>
    <user-id value="$SQLServerUsrID$"/>
    <password value="$SQLServerPassword$"/>
    <encrypt value="true"/>
    <trust-server-certificate value="true"/>
    </sql-server-authentication>
    </sql-server>
    </servers>
    <script-commands>
    <create-new-project project-folder="$project_folder$ "
    project-name="$project_name$"
    overwrite-if-exists="true"/>
    <connect-target-database server="target_1"/>
    <load-access-database database-file="$AccessDbFolder$\$AccessDatabaseFile$"/>---
    <!--Schema Mapping-->
    <map-schema source-schema="$AccessDatabase$" sql-server-schema="$SQLServerDb$.dbo" />
    <!-- Convert schema -->
    <!-- Example: Convert entire Schema (with all attributes)-->
    <convert-schema object-name="$AccessDatabase$"
    object-type="Databases"
    conversion-report-overwrite="true"
    verbose="true"
    report-errors="true" />
    <!-- Synchronize target -->
    <!-- Example: Synchronize target entire Database with all attributes-->
    <synchronize-target object-name="$SQLServerDb$.dbo"
    on-error="fail-script" />
    <!-- Data Migration-->
    <!--Example: Data Migration of all tables in the schema (with all attributes)-->
    <migrate-data object-name="$AccessDatabase$.Tables"
    object-type="category"
    report-errors="true"
    verbose="true"/>
    </script-commands>
    </ssma-script-file>
    There is a similar scripts about migrating Oracle database to SQL Server, you can use powershell script to automatically run the console for scripts/variable files, saved in the specified folder. For more information, review the following
    article.
    http://blogs.msdn.com/b/ssma/archive/2010/09/09/performing-database-migration-assessment-using-ssma-console-application.aspx
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Creating a custom screen saver that won't blow a small image

    Hello All...
    At work, my boss is trying to get me to create a custom screen saver with our business logo to display when activated. I'm usually pretty comfortable with these kinds of tasks, but for this one I'm at a loss.
    I've have my logo in a designated folder and when I'm under Screen Saver in System Preferences, I have that folder selected and then would like the image to repeat itself, but basically jump around the screen (sort of like "gasp" the Windows XP default screen saver). My problem is that no matter what the size of my logo is, it is fitted automatically to the size of the monitor, even if it is a rather small logo. Therefore, 1) it is very pixelated and 2.) it defeats the purpose of the screen saver because it can't jump around.
    I've turned off the option "Crop slides to fill screen" thinking that would work, but it hasn't. We're running OS 10.5.8 on 24" iMacs from early/mid 2009. Any ideas would be greatly appreciated. Thanks!

    i.3d wrote:
    This is a heavy handed approach but how about creating a document the size of your screen, and paste the logo in its original size into it.
    It's not heavy handed. this is the only thing that makes sense here and I was going to suggest that too. just make an image of appropriate size. that's not hard.
    In fact, using Photoshop or Gimp you could make several layers, each with a different colour background, move the logo around on each layer, save each layer as a separate image and then play with them. Do a slideshow with transitions etc.
    BTW, where did the quartz composer go? It used to be included in the previous versions of OSX.
    Quartz composer would let you create "proper" screen savers.
    Edit:
    Have a look here:
    http://quartzcompositions.com/
    Surely you'll find someone or something that can help you.
    Message was edited by: i.3d

  • How do you connect your photoshop elements on your computer to your account online? and how do you create a customized url? how does the gallery work and how do you access it? i have trouble signing in on my program from my computer to connect to the onli

    how do you connect your photoshop elements on your computer to your account online? and how do you create a customized url? how does the gallery work and how do you access it? i have trouble signing in on my program from my computer to connect to the online photoshop, and I really want to create my own customized url and post photos to my gallery and share them with the world, family, and friends, but i need help because i can't figure how to do any of this, would really appreciate feedback and assistance, thanks, - claire conlon

    To add to sig's reply, "calibrating" does not calibrate Lithiu-Ion batteries, it calibrates the charge reporting circuitry.  If you look at the effect of deep discharging Lithium-Ion batteries in the data from the independent test group, Battery University, you will see that doing so shortens the life of the battery significantly. It looks like an optimum balance between use and life is at a discharge level of 50%.

  • How can i create a custom table in to my banking services server

    I am having product type and account type details for those things I need to create a table
    Product Id.                 Account Type
    DP_PYGO_P     21
    DP_BASIC     25
    DP_UNLIMIT     24
    DP_ADVANTG     17
    DP_SAV                     34
    DP_TBILL                     54
    DP_USDCHQ     19
    DP_FREEDOM     52
    For the above fields how can i create a custom table into banking services server

    Transaction SE11, maybe? I don't really see the problem, unless you have never created a transparant table before...

  • How can I create a full-screen view of Keynote slide in Snow Leopard?

    How can I create a full-screen view of my Keynote slides in Snow Leopard?
    I'm going to be importing into ScreenFlow to create a video.
    Thank you!!

    Welcome to Apple Support Communities.
    Do you want static screen captures or motion video of slides as titles, bullet points, and the like are presented?
    Run the Keynote slide presentation in full-screen mode, then...
    Static full-screen captures - use Command+Shift+3.
    Static partial-screen captures - use Command+Shift+4 and use cursor to select the area of the screen to capture.
    If you want motion video as builds occur, why not use Keynote's built-in Share, Export function?
    (I'm on iLife '09.)
    Also understand that the default slide format for Keynote is 1024x768, not full-screen MacBook 1280x800 screen size, so you'll have wide black borders unless you change the default size or crop the finished screen captures.
    Message was edited by: kostby

  • How can i create a custom object 0REQUID

    Hello all,
    I have a question. How can i create a custom object 0REQUID? Is it possible to create it without actvating BI content?
    Thanks in advance..

    Hi,
    If you want to create a new info object which is a copy of 0REQUID. then
    Go to > info object key figure / Chara catalogue> create new key figure / Chara --> enter 0REQUID in front of TEMPLATE and you will get all details of 0REQUID in your new key figure / chara.
    Hope this helps.
    Assgn pts if helpful.
    Regards
    Edited by: chintamani deshmukh on Apr 14, 2008 11:09 AM

  • How can I create a custom sized video in PP cs6?

    How can I create a custom sized video in PP cs6? I have read references to the "desktop" setting but cannot find it. I am trying to find the right settings for a 1080 px x 486 px video (which I need to qualify for hi res on Vimeo).  I need to output a 450 x 1000 px video for
    my website. Ideally, I'd like the sequence settings as well as the output settings. I am using still shots- no actual video.

    What are the exact properties of the still images, particularly the pixel dimensions and pixel aspect ratio (PAR).* The letterboxing (black bars top & bottom) is most likely a result of a mismatch in these settings. If this is the case, then the easiest fix is to make sure not only the dimensions but the PAR match.
    Say for instance your source images are 1000x1000 with a PAR of 1.0 (square pixels) and your sequence is set also set to 1000x1000 but with the PAR set to D1/DV NTSC (0.9091), the result would be letterboxing as seen here:
    *if you're not sure about the PAR of your source images, right click on one of them in the Project panel and select Properties.

  • How can I create a custom field in contacts and have it appear in ICal?

    How can I create a custom field in contacts (death date) and have it appear in calendar?
    Birthdays seems to work fine but I'd like to do the same for a custom field called Date of Death

    By default, iTunes convert files to type AAC which has an extension of .m4a
    For iTunes to recognize them as Audiobook files, the extension needs to change from .m4a to .m4b
    This can be done a number of different ways. Here are 2 (beginner and advanced)
    . simply, by renaming each file from windows explorer
    . more complex, by using Start/Run/cmd to get a "DOS" type window,
    using the command "cd" to change to the directory that your files are in
    and entering "ren *.m4a *.m4b"

  • How do I create a custom sound/vibration profile per app, SMS text, phone, or email contact?

    I have a Verizon iPhone 4s recently upgraded to iOS 7.  I'm an IT engineer who's on call and started a new job last week with a company that doesn't provide company phones like a blackberry.  So now I get tons of company email alerts, text messages, and phone calls both private and for work.  I always have my phone switched to vibrate to filter out the noise of generic emails/texts/phone calls, but I also need to be able to configure specific emails sent from our network monitoring servers, text messages from my teammates and alerting devices, as well as phone calls from our internal tech support to be sent with sound.  Ideally I also need to be able to configure alert options in an "On-call" profile I can switch on so that I can configure alert repeats and the most annoying noise I can find so I don't sleep through network pages..  But I still want to be able to keep the default vibrate for everyone else and everything else.. How do I create a custom sound/vibration profile per app, SMS text, phone, or email contact?  In blackberry's, you can easily create different profiles to switch back/forth and configure each app/text/phone option to either a sound option or vibrate.  iPhone seems to be all vibrate or all sound, with little to no options to mix/match the two..  If Apple ever hopes to truly capture the enterprise market blackberry has, this is the most standard and essential feature on blackberries for IT professionals..  If I have to buy a third-party app for this, so be it.  But I've been searching for hours and found nothing that creates customized sound/vibrate profiles for iPhone like this (minus jailbreaking your phone, but I shouldn't have to jailbreak a $699 "smartphone" for simple sound/vibrate/alert options like this..).

    Yeah Appke wants to be like RIM (Blackberry) who is sinking fast and their devices will be door stops.
    http://www.apple.com under support you can ask at their forum or you can call them. However if you call under ios7 support they may help you for free. But if not they will cost you $$$$
    As far as I can tell with my iphone what you want to do is not possible. There are sites that tell you how  to make different ringtones for the device but your choices to change  sounds for email and text/sms messages are controlled unders sounds in the setting menu.  Again the manual is on your phone and online if you need assistance changing sounds and ringtones.
    Good Luck

  • How do I create a custom page set up

    How do I create a custom page set up

    Seb,
    You can use the dropdown list in the File>Document Setup>Artboard; Custom is at the top (hidden at first view).

  • How can i create a custom control, indicator

    This is FredFred,
    How can i create a custom control switch with 3 or more options,
    OFF
    ON
    STANDBY
    Other than rocker, slide, or toggle switch, are there other switches that we can use, hence, the question of creating a custom switch.
    Also, is there a way to create an indicator with two options. Enclosed is a jpeg with an example of what i need
    Thanks in Advance
    Attachments:
    sample switches_displays.bmp ‏720 KB

    Hello.
    Boolean controls can only have 2 possible values, true or false, and there is no way to add more values to them.
    If you need more values, then you must use a numeric control (or a string, but I tend to like numerics better, although strings could be just as useful).
    There are several types of numeric controls you could use to provide 3 or more options. Attached is a VI which shows a ring, a knob, and a slide each with 3 possible values. In your code, you would then perform different actions depending on the numeric value of your control.
    Hope this helps,
    Alejandro
    Attachments:
    NumericsWith3Options.vi ‏14 KB

  • How do I create a custom stamp on a MAC

    How do I create a custom stamp on a MAC. It is quite easy on a PC, but the steps are not as intuitive on a MAC.

Maybe you are looking for

  • Valid digital signatures in Windows XP are no longer valid in Windows 7

    We have a Windows application that uses axAcroPDF control to display digitally signed and validated forms. The PDF document was displayed correctly (Signed and all signatures are valid ) in Windows XP environment. However, recently our organization s

  • SD Host error at Win XP SP2

    Hello all I have followig problem I have installed to my notebook Windows XP SP2. After installing i have reported abt error with SD host. What problem can be Thank you

  • Online access?

    Because my online storage is full, I cannot create albums in my computer.  Is this right? (New user..sorry)

  • View source broken

    View source is broken. nothing happens when i try to view source on any website. plus when i tried to make a new topic that didn't work either: Please confirm your question ("view source" does nothing) at the link below: https://support.mozilla.com/q

  • Multiple VLAN Access for PC

    I work in a building that has two separate entities, but both work together to accomplish the same goals. The IT admin before me set us up on separate VLANs through many cisco switches. One lady that works here does work for both entities. There are