How to duplicate the screen of Windows 8 start for multiple users

I will implement separate user profiles for the grandkids on my PC of Windows 8 and want to start them all out with the same applications and settings.  I can do it all manually, but I would like to create one, and then copy the settings for others.  I know how to do this in previous versions, but so far have not seen splash screen settings at the usual place.

Hi CraigLawrence,

Thank you for choosing Windows 8 and join us on our community.

Looks like you want to have the same start parameters of the screen for the user accounts. We will be happy to help you.

You will be able to change the parameters of start screen under security settings for the family.

I suggest you to follow these steps and check.

a. press the Windows key + X , and then select Control Panel.

b. Select the user accounts and family safety.

c. Select family security and click on a user account.

d. click on The Application of Restrictions and select the user will use the apps I leave.

e. check the boxes for the apps you want to allow the user, and then click ok.

Reference:

You can go through the links for your reference.

Set up parental controls

http://Windows.Microsoft.com/en-us/Windows/set-up-family-safety#set-up-family-safety=Windows-8

Using parental controls with the Windows store

http://Windows.Microsoft.com/en-us/Windows-8/family-safety-settings-Windows-store

Keep your family safe

http://Windows.Microsoft.com/en-us/Windows-8/set-up-kids-accounts#1TC=T1

Keep your family safe

http://Windows.Microsoft.com/en-us/Windows-8/family-safety#1TC=T1

It will be useful. For queries further feel free to come back.

Tags: Windows

Similar Questions

  • HOW to use the file/BLOB data temporary - email for multiple users... Please see code

    Dear gurus
    the code below works fine, he sends a good fixation to the first user, but to the 2nd user, it send blank (empty) file.
    What I want, I have read the data from the source and enter the temporary BLOB and use the same data to send several users in the loop.


    create or replace
    PROCEDURE dba_ho.emailattacheulhr is
    / * LOB related operation varriables * /.
    v_src_loc BFILE.
    l_buffer RAW (54);
    l_amount directory: = 54;
    l_pos INTEGER: = 1;
    l_blob BLOB: = EMPTY_BLOB;
    l_blob_len INTEGER.
    v_amount INTEGER.
    / * Related UTL_SMTP varriavles. */
    v_connection_handle UTL_SMTP. CONNECTION;
    v_from_email_address VARCHAR2 (200);
    v_to_email_address VARCHAR2 (200);
    v_cc VARCHAR2 (200);
    v_smtp_host VARCHAR2 (50);
    v_subject VARCHAR2 (500);
    l_message VARCHAR2 (30000);
    l_filename VARCHAR2 (4000);
    CustNo number (8);
    CNAME varchar2 (50);

    cst slider is
    Select a.EMAIL_ADDR, a.CARDHOLDER_NAME
    Cust a
    ORDER BY a.cust_no;

    / * This procedure of send_header is mentioned in the documentation * /.
    PROCEDURE send_header (pi_name IN VARCHAR2, pi_header IN VARCHAR2) AS
    BEGIN
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    pi_name | ': ' || pi_header | UTL_TCP. CRLF);
    END;

    BEGIN
    v_src_loc: = BFILENAME ('DIR_MMAIL', 'MAKPROM.pdf');
    v_from_email_address: = '[email protected] ';
    v_cc: = '[email protected] ';
    v_smtp_host: = 'mailhost.mak.com ';
    v_subject: = 'list of Promotion of Mak;
    -l_blob BLOB: = EMPTY_BLOB;
    / * Prepare the LOB of attachment file. */
    DBMS_LOB. OPEN (v_src_loc, DBMS_LOB. LOB_READONLY); -Read the file
    DBMS_LOB. CREATETEMPORARY (l_blob, TRUE); -Create a temporary LOB to store the file.
    v_amount: = DBMS_LOB. GETLENGTH (v_src_loc); -Amount to be stored.
    DBMS_LOB. LOADFROMFILE (l_blob, v_src_loc, v_amount); -A temporary file in LOB loading
    l_blob_len: = DBMS_LOB.getlength (l_blob);


    Begin
    CSE opened;

    loop
    extract the CSE in custno, v_to_email_address, cname;
    When the output cst % notfound;

    l_message: = 'Dear customer ' | UTL_TCP. CRLF;
    l_message: = l_message | CNAME | UTL_TCP. CRLF;
    l_message: = l_message | UTL_TCP. CRLF;
    l_message: = l_message | "Thanks for choosing. Enclosed please find our current list of promotion for your review. '||
    UTL_TCP. CRLF;
    l_message: = l_message | UTL_TCP. CRLF;
    l_message: = l_message | "Sincere friendships. UTL_TCP. CRLF;
    l_message: = l_message | UTL_TCP. CRLF;
    l_message: = l_message | UTL_TCP. CRLF;
    l_message: = l_message | "To Mak' | UTL_TCP. CRLF;
    l_message: = l_message | ' www.mak.com' | UTL_TCP. CRLF;

    / * Associated with coding UTL_SMTP. */
    v_connection_handle: = UTL_SMTP. OPEN_CONNECTION (v_smtp_host, 25);
    UTL_SMTP. HELO (v_connection_handle, v_smtp_host);
    UTL_SMTP. MAIL (v_connection_handle, v_from_email_address);
    UTL_SMTP. RCPT (v_connection_handle, v_to_email_address);
    UTL_SMTP. RCPT (v_connection_handle, v_cc);

    UTL_SMTP. OPEN_DATA (v_connection_handle);
    send_header ("", v_from_email_address) ;--|| ("<>'");
    send_header ("TO", v_to_email_address) ;--|| ("<>'");
    send_header ('CC', v_cc);
    send_header ('Subject', v_subject);

    -MIME header.
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    "MIME-Version: 1.0 ' |" UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    ' Content-Type: multipart/mixed; ' || UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    "boundary =" ' | "'" Sample.SECBOUND' | '"' ||
    UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle, UTL_TCP. CRLF);

    -Body of the message
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    '--' || "Sample.SECBOUND" | UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    ' Content-Type: text/plain; "|| UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    'charset = US-ASCII' | UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle, UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle, l_message |) UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle, UTL_TCP. CRLF);

    -Attachment of e-mail
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    '--' || "Sample.SECBOUND" | UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    ' Content-Type: application/octet-stream' |
    UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    ' Content-Disposition: attachment; ' || UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    "filename =" ' | "MakMail.pdf" | '"' || UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    ' Content-Transfer-Encoding: base64' | UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle, UTL_TCP. CRLF);
    / * Write the BLOB into pieces * /.
    While l_pos < l_blob_len LOOP
    DBMS_LOB. READ (l_blob, l_amount, l_pos, l_buffer);
    UTL_SMTP.write_raw_data (v_connection_handle,
    UTL_ENCODE. Base64_encode (l_buffer));
    UTL_SMTP. WRITE_DATA (v_connection_handle, UTL_TCP. CRLF);
    l_buffer: = NULL;
    l_pos: = l_pos + l_amount;
    END LOOP;
    UTL_SMTP. WRITE_DATA (v_connection_handle, UTL_TCP. CRLF);

    -E-mail nearby
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    '--' || "Sample.SECBOUND" | '--' || UTL_TCP. CRLF);
    UTL_SMTP. WRITE_DATA (v_connection_handle,
    UTL_TCP. CRLF. '.' || UTL_TCP. CRLF);
    UTL_SMTP. CLOSE_DATA (v_connection_handle);
    UTL_SMTP. Quit (v_connection_handle);
    -DBMS_LOB. FREETEMPORARY (l_blob);
    -DBMS_LOB. FileClose (v_src_loc);

    End loop;


    EXCEPTION
    WHILE OTHERS THEN
    UTL_SMTP. Quit (v_connection_handle);
    DBMS_LOB. FREETEMPORARY (l_blob);
    DBMS_LOB. FILECLOSE (V_SRC_LOC);
    dbms_output.put_line (SQLERRM); -try to print the error message.
    END;
    DBMS_LOB. FREETEMPORARY (l_blob);
    DBMS_LOB. FileClose (v_src_loc);
    End;

    -end of code

    Help, please.

    Concerning

    S.Garewal

    This is what happens when you copy a code without understanding.
    Take a look at the code here

    /* Writing the BLOB in chunks */
    WHILE l_pos < l_blob_len LOOP
    DBMS_LOB.READ(l_blob, l_amount, l_pos, l_buffer);
    UTL_SMTP.write_raw_data(v_connection_handle,
    UTL_ENCODE.BASE64_ENCODE(l_buffer));
    UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
    l_buffer := NULL;
    l_pos := l_pos + l_amount;
    END LOOP;
    

    Discover the parameters of DBMS_LOB. READ.
    For the first time it's good reading but your position and the quantity is not initialized when you loop and read again and is not read correctly.

  • How to enlarge the screen of Windows Server 2003 on VMware Server 2?

    People,

    Hello. Because Windows 7 is not compatible must be installed to PeopleSoft PIA, I need to install VMware Server 2, and then install Windows Server 2003, which is compatible with PIA, on the virtual machine.

    But when I open Windows Server 2003 on the virtual machine, Win2K3 screen is very small, and its size is of about 1/4 of the screen of my computer screen. It is not comfortable to work for a long time.

    People know how to enlarge the screen of Windows Server 2003 in a virtual machine VMware Server 2 so that its size covers all of my computer screen?


    Thanks in advance!


    Lucy

    Did you already installed the VMWare tools in your guest OS in VMWare? In general, it helps a lot to be able to redefine a larger screen definition.

    Nicolas.

  • HOW CAN I ADD MY OWN IMAGE ON THE SCREEN OF WINDOWS 8 START

    Greetings.

    Let's be clear, as clear as I can be without realizing the term Microsoft applies to this new application in Windows.

    When you click Start in Windows 8, there is an image behind the tiles. I want my own image, which is an image from my Gallery, behind the tiles.

    When you click on the charm of settings and select Customize, you are allowed to choose among 20 preloaded images, with 20 being your current desktop image. I would use a still image without making changes to my desktop.

    I can not even find the location of the file for the preloaded images! If I knew where they were stored, I could add my own image library.

    I use a similar technigue to make my wallpapers available for all users: my wallpaper screen images has just moved into the Windows\Web\Wallpaper folder.

    Similarly, I do some of my available desktop themes to all users by copying them in the Users\Default\AppData\Local\Microsoft\Windows\Themes folder.

    I even load my own sounds in the Windows\Media folder. Thus, all users have access to the sounds I like to use.

    But I can not find the folder where are these images pre-loaded Windows 8 start... AND I don't like these preloaded images, I want to use one of my own!

    How can I change the image of Windows 8 start behind my tiles?

    This is not possible, Mr President.

    You can have transparent so that your background shows through (option 20 as you mentioned it).

    Other components don't cry pictures. They are programming that built graphical objects, a lot as well as additional programming that prompts them to move when you scroll for artistic effect and provide options to change the colors of this product graphic objects programmatically.

    But there is no 'image' to display or replace, because none of those are actually pictures at all.

    I'm sorry.

  • How to calibrate the screens of Adobe products? For the most part, I'll use Illustrator and Photoshop.Can someone make a difference between the calibration and the Hardware calibration software using (Spider)? Thank you.

    How to calibrate the screens of Adobe products? I will mostly use Illustrator and Photoshop.Can make all the difference between calibration and the Hardware calibration software using (Spider)? Thank you.

    I use U2415 from Dell.

    I use the Spyder Pro 4. The process is quite simple - install the software, plug the Spyder and follow the steps listed in the program. I would recommend also, install the latest version of the software directly from the site of Datacolor instead to install from the disc supplied (probably outdated).

    Benjamin

  • How can I change the name on the screen of Windows 8 start?

    Just set up the new computer with Windows 8. Spent a ridiculous amount of time to change the name of the profile at the top right of the home screen...

    Have tried many scenarios found via this forum, google search, etc... all to nothing does not.

    Specifically, I've connected on my MSFT account and change to my desired name 'show' and it shows there as intended, as it does when I connect on 8 of Windows mail, Outlook etc... But not on the Windows 8 start screen.

    Advice/suggestions would be appreciated at this point...

    Thank you

    Steve

    This start screen name must come to the right of your MS Account.

    You can try this, but I'm not positive if it relates in reality.  Use Win + R to display the run, type netplwiz and click OK.  In the list, select your account, then on properties and specify in the 'Full name' box, then restart.

  • How to ensure the backup of Windows 7 starts and runs until the end on a laptop which is mode standby, or could be put in mode 'sleep' when the lid is closed.

    Hello

    Many of us with laptops with Windows 7 would like to ensure that, when a Windows backup is scheduled, it starts successfully and goes to full completion, regardless of whether the phone is first 'sleep', or if the user of the laptop close the lid of the laptop, which would normally the laptop mode 'sleep'.  In other words, how to backup Windows or Windows 7 be configured to wake from mode "sleep" and prevent it from sleep mode, when a backup is scheduled and actively running?

    I saw a way to schedule a task that will wake the computer, but I'm looking for something more intelligent than that.  I'm looking to see if Microsoft has already thought this through and allow you to pre-configure operating system such as we have no additional installation software.

    Thank you

    Dave

    We continued this thread in http://answers.microsoft.com/en-us/windows/forum/windows_7-performance/how-do-i-keep-windows-7-from-sleeping-in-the/9602fbe6-f9d2-461d-88ee-710369e6f543

  • How to know the version of windows without starting windows?

    Hello.

    There is no way to discover the version of windows 7 (home, home premium, professional...) on a computer where windows does not start? (it does not start in normal mode or safe mode). I can start the computer with linux and browse the folders. At the back of the lapto there is the cd key but not the version.

    Thank you very much
    Alessandro

    I'm sorry I already solved and not notified you...

    I tried with a Windows home version found on the internet and it worked with the cd key on the back of the laptop.

    Thanks for the suggestion anyway, if I'm having this problem again (with another laptop, that belong to one of my friends), your suggestions will be very useful!

    Thank you

    Alessandro

  • How to divide the request to assign a role to multiple users in several.

    Hello

    While we are assigning a role to multiple users OIM11g at the same time, demand has cut several queries to get approved by the Manager of beneficiaries. Please let us know ways to apply the composite to divide the application.

    Why two separate approval process? Instead of two only have a license deal with assignment of dynamic loop based Manager of beneficiary to the owner of the role, and attach it to the level of the operation and you should be good (with auto level template and request approval).
    The child requests are generated only at the level of the operation and NOT to any two previous levels. It is the engine of the application for you.

    -BB

  • How can I put shortcuts on the screen of Windows 8 start

    Using Xp, Vista and Win7, I could create a shortcut to a document so that I just had to click on it and it's there.  When I try to create a shortcut on the start of Win8 screen, no luck.  for example, I have a couple of MSWord docs that I access frequently, and I would put them on the start screen.  How can I do this?

    Thank you

    Joe

    I had the question too, so after playing with it, I found that it could be done, but it's a pain.  Here's what I had to do:

    1. Go to %AppData%/Roaming/Microsoft/Windows/Start Menu Programs
    2. Create a shortcut to your file here.
    3. Go to your screen Star and pull up "all apps".
    4. You should see your shortcut somewhere in the area of "Apps".  Just Pin to start.
  • How to find the drivers of Windows XP Home for Satellite A350?

    Hello

    I just bought a new Toshiba Satellite A350 and wanted to downgrade from Vista to XP.
    I've done suscesfully.

    But I can not find drivers (chipset) for Windows XP, both on Toshiba download page and the Intel Web site.

    Can someone help me?
    I'm stuck!

    Thank you.

    And you what Satellite A350 (A350-xxx)?

  • Re: How to get the drivers of Windows XP Home for Satellite A100-1201E

    Satellite A100-1201E-PSAAKL-00E002

    OK everyone. Here is the information that EVERYONE has been sought.

    Canada ONLY with the support of xp for this computer's AMERICA. But it's simple.*

    * video drivers #1. Access the Web of ATI site: http://www.amd.com/us/Pages/AMDHomePage.aspx *.
    * in the top right, are the cownloads and drivers section, please click 'CATALYST' down the ATI logo.*
    * then click on drivers integrated / motherboard. then select the suitable driver for your operating system, *.
    * IE w7/vista/xp and the version you are using, IE 64/32 bit.*

    * This is the right video driver! *

    * audio drivers #2 go to the realtek site: http://www.realtek.com.tw/
    in the right hand marked the QUICK LINKS box, *.
    {color} [Audio Codec Driver | http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&PNid=14&PFid=24&Level= 4 & Conn = 3 & DownTypeID = 3 & GetDown = false] * click on the "I agree" in the middle column and choose the suitable driver for your system! *

    * all other drivers are available on the site Web of toshiba usa: www.toshiba.com/tai/ in the 3rd column go *.
    * to: Consumer Support & Services and click on laptop computers. This brings you to the main support section.*
    * on the horizontal bar at the top, click on download and select notebook, then SATELLITE A100-ST1041 *.

    * #3, Atheros wireless adapter, HARD, it took me hours of conversation with the tech staff at atheros to finally get the driver, *.
    I put the driver to: atheros www.cukrov.org/-xp *.

    Hope this helps everyone!

    Geoff

    Hello Geoff

    Thanks for this useful article, but I don't know what you mean with:
    Canada ONLY with the support of xp for this computer's AMERICA. *

    How to understand America? Do you mean WE, in North America or South America?
    I checked US Toshiba support page and Satellite A100-1201E is not listed there. It is without doubt no portable US model.
    So please be so kind and post it where we can find the Toshiba WXP drivers for this model of laptop.

  • How to restore the icons of windows 7 original for shortcuts

    Hello

    I use Windows 7 Professional. In a completely unexpected way (probably after installing Nero essentials 8) pictures of my shortcut (with the classic arrow) icons have changed. Now ALL my shortcuts are represented with the same icon files that are not associated with any program (generic icon).  Now, it is very difficult to distinguish things and to distinguish between files and programs.

    Notice that this happens only with the shortcuts, all other icons are good.

    IconCache.db is no longer available in Windows 7, or at least I can't.

    I don't even know if it's a problem of cache if the icon itself of shortcuts is damaged or missing.

    I tried restoring the system five times, I try every restorepoints that would be prior to the problem, but it does not solve.

    Is it possible to solve the problem without having to reinstall windows?

    Sincerely

    Danilo Renzi

    Hello

    problem solved. Manager was a tweaker tweaker "EnhanceMySe7en. After a software update of the tweaker, it configured itself to not display the arrows on shortcuts. What made the photo of these icons didin't show correctly. It also makes the iconcache.db file unavailable. I solved the problem by setting her the right way.

    Sincerely

    Danilo Renzi

  • I accidentally deleted my "Desktop" tile on my screen of Windows 8 start... How to bring back the tile "Office"?

    Original title: tile from office.

    Hello

    I accidentally deleted my "Desktop" tile on my screen of Windows 8 start... How to bring back the tile "Office"?

    On the start page, type desktop to search for. When it comes to the top, right-click on it and select PIN to start.

  • How to split the screen of my mac book

    How to split the screen of my Macbook?

    There may be a solution on how to split the screen into two (halves) for independent display

    through the use of third-party software options. I haven't tried everything, but have read of some who can work.

    Such a "solution party' appears in the Mac App Store; See the second link to the manufacturer.

    https://iTunes.Apple.com/us/app/split-screen/id453757310?MT=12

    • Split screen - Mac app for windows (approximately $7 USD) display management

    http://www.splitscreenapp.com/

    There may be others, beware of questionable sources, as they may contain others? content.

    This may work on a Mac, not a portable desktop computer:

    • Apple introduced mode split for the apps full screen on a Mac in OS X El Capitan - 9to5Mac.com:

    http://9to5Mac.com/2015/06/08/Mac-split-screen-multitasking/

    In any case...

    Good luck & happy computing!

    under the direction

Maybe you are looking for