Creating an shortcut for all users on the desktop

I want to create a shortcut for all users on the desktop that will appear for all users that login to the computer.  How is this done in Windows 7?  In Widows XP this was done at the "All Users" profile, but I cannot find such a profile  in Windows 7. 

the users have windows vista , 7 or 8 have a chortcut i created and the users have windows xp isn't created on them desktop
Do you have a question? If so then your best bet is to create a new post (this one is 5 years old and marked as "answered"!) and spell it out there.

Similar Messages

  • How to create a shortcut for all users in Win 7 and Win 8?

    Hi,
    I'll trying to make a script that will create a shortcut in every user profile account in a computer. I stumble upon the script below from
    http://gallery.technet.microsoft.com/scriptcenter/Create-shortcut-in-your-11cfd3de/view/Discussions#content.
    Option Explicit
    On Error Resume Next
    Dim objShell
    Dim objDesktop
    Dim  objLink
    Dim strAppPath
    Dim strWorkDir
    Dim strIconPath
    strWorkDir ="C:\Program Files\Microsoft Office\Office15"
    strAppPath = "C:\Program Files\Microsoft Office\Office15\ORGCHART.EXE"  'you have to use your URL to Interanet site or path to specific program
    'strIconPath = "\\server\Xyz.ico"     'specify the path to the icon please change to your valid path
    Set objShell = CreateObject("WScript.Shell")
    'objDesktop = objShell.SpecialFolders("Desktop")
    Set objLink = objShell.CreateShortcut("C:\Users\%userprofile%\Desktop\Org_chart_test.lnk") 'change here To your shortcut name
    objLink.Description = "this is a test" 'replaec with your description
    'objLink.IconLocation = strIconPath
    objLink.TargetPath = strAppPath
    objLink.WindowStyle = 3
    objLink.WorkingDirectory = strWorkDir
    objLink.Save
    I did some modifications to cater to my need. Now the question is, how can I make the script create a shortcut for every user profile from the script above?
    Any inputs would be greatly appreciated.
    Thanks!

    You could create the shortcut at one machine, then copy it to the target as part of the logon script. Note also that this line contains an error:
    "C:\Users\%userprofile%\Desktop\Org_chart_test.lnk"
    It should read:
    "%userprofile%\Desktop\Org_chart_test.lnk"

  • HT1660 how can I use one single library for all users on the same laptop?

    how can I use one single library for all users on the same laptop?

    You are most of the way there. Each user having access to hard drive is the key. If users are limited in file privileges this is harder.
    Any files you add to your library and any files she adds to her library are available to the other. Just not automatically. Each user must add the files to their own library using the add file or add folder option from menu bar.
    What I have done is set library location to a location outside of My Documents\My Music. On my network storage I have a folder names s:\itunes. Both accounts iTunes are set to use this location for the library.

  • You do not have sufficient privileges to complete this installation for all users of the machine. Log on as administrator and then retry this installation

    Hi all
    Have seen a couple threads regarding this but unfortunately nothing that solves my problem thus far!
    Right now, our developers are using the Domain Admin account to promote their website code using MSI files.  I'd like to change this as I feel the Domain Admin account should be on lock down and only used when absolutely necessary, pretty common.  The
    same goes for my account too, I would like to absolve as much use of the Domain Admin as I can.
    Problem is, when they run installers from their own accounts, they receive this error: You do not have sufficient privileges
    to complete this installation for all users of the machine. Log on as administrator and then retry this installation
    The accounts they are using are part of the Built In Administrators group and the Domain Admins group... I'm not sure what other permission you'd need in a domain?  We've gone as far as explicitly giving them local admin access on this server and still
    nothing changes.
    Is there a Group Policy or something that I can change to provide install rights and possibly remove these accounts as Domain Admin and more along the line of Power User?
    Thanks much for your help!
    Ryan

    Hi,
    You could use Software Restriction Policies (SRP’s) or Applocker(supported on Windows server 2008 R2/Windows 7 only) to restrict the running
    of the application for specific user.
    Description of the Software Restriction Policies
    http://support.microsoft.com/kb/310791
    HOW TO: Restrict Users from Running Specific Windows Programs
    http://support.microsoft.com/kb/323525
    How to Implement Group Policy Security Filtering
    http://www.windowsnetworking.com/articles_tutorials/Group-Policy-Security-Filtering.htmlPlease remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • How to create delivery device for all users ?

    hi
    help needed ...
    i activated delivery tool
    but i dont know how to create email devices for all users
    is there any api / manual action
    obiee version : Oracle Business Intelligence 10.1.3.4.1
    thanks
    yuval

    Yuval..u need to setup SA System in RPD..
    refer http://oraclebizint.wordpress.com/2008/04/25/oracle-bi-ee-101332-sa-system-subject-area-autoloading-profiles-and-bursting/

  • Is there an easy way to add a desktop shortcut for all users?

    Looking for an easy way to add a shortcut to an app for all users.

    William is correct. There are global system settings, and then there are personal user settings. Adding a shortcut to the desktop, or more commonly the Dock is a personal setting.
    Unless its in some kind of mass deployment scenario where you can create a pre programed image for large amounts of computers which has it already has your app shortcut setup, its easier to just do it one user at a time.

  • SharePoint 2013- on-Prem - Create OneDrive Site for all users automatically

    I want to create OneDrive for all users automatically by running some PowerShell code
    Can somebody provide me link to the reference of creating that PS script

    Hi,
    here you are the code as stated in this link
    http://matthewyarlett.blogspot.com/2014/06/script-creating-sharepoint-user-mysites.html
    Function Create-MySite
    [CmdletBinding()]
    Param
    [Parameter(Mandatory = $True,Position=2,valueFromPipeline=$true)][String]$Username,
    [Parameter(Mandatory = $True,Position=1)][String]$MySiteRootURL
    [void][reflection.assembly]::Loadwithpartialname("Microsoft.Office.Server");
    $site=new-object Microsoft.SharePoint.SPSite($MySiteRootURL);
    try
    $serviceContext = Get-SPServiceContext $site;
    $upm = new-object Microsoft.Office.Server.UserProfiles.UserProfileManager($serviceContext);
    if($upm.UserExists($Username) -eq $false)
    Write-Host "User $Username was not found in the profile store." -f yellow;
    return;
    $userProfile = $upm.GetUserProfile($Username);
    if($userProfile.PersonalSite -eq $Null)
    Write-Host "Creating MySite for user $Username" -f darkyellow;
    $userProfile.CreatePersonalSite();
    Write-host "Successfully created MySite for user $Username" -f green;
    else
    Write-Host "User $Username already has a MySite." -f darkgreen;
    catch
    Write-Host "Encountered an error creating a MySite for user $Username. Error:"$_.Exception -f Red;
    finally
    $site.Dispose();
    to call the function:
    #Example - Create a MySite for user "tonyj"
    Create-MySite -MySiteRootURL "http://mysite.bigintranet.com.au" -Username "tonyj"
    #To Create for an array of users
    $users = @('tonyj','bobh','markf','billd')
    $users | Foreach {Create-MySite -MySiteRootURL "http://mysite.bigintranet.com.au" -username $_}
    Kind Regards,
    John Naguib
    Technical Consultant/Architect
    MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation
    Please remember to mark your question as answered if this solves your problem

  • One Library for all users on the system - Sharing?

    Hello.
    I'm using iTunes 9.0.3 on OS X 10.6.2. On this system, there are TWO users, one for my wife, one for me. I'd like to "merge" the seperate iTunes libraries, so that there's only one shared library for all users.
    How could this be achieved?
    Searching the web, I found a writeup on [dougscripts.com by Paul Whitey|http://dougscripts.com/itunes/itinfo/sharedlib.php], which basically explains to move ~/Music/iTunes to /Users/Shared/iTunes and making sure that there's an alias in ~/Music pointing to /Users/Shared/iTunes. It also explains, that the ownership of the files & folders is to be changed so, that all users have read & write access. This then looks like this on my system:
    !http://img214.imageshack.us/img214/6223/fileinfowithbothusersha.png!
    -> http://yfrog.com/5yfileinfowithbothusershap
    It works good - both "alex" and "sandra" can work with these files (ie. move them, rename them, change ID3 tags).
    But see those:
    !http://img714.imageshack.us/img714/2183/fileinfowithonlyalexhav.png! !http://img686.imageshack.us/img686/7807/fileinfowithonlysandra4.png!
    --> http://yfrog.com/jufileinfowithonlyalexhavp & http://yfrog.com/j2fileinfowithonlysandra4p
    That's from files which sandra or alex have added later on. Only the one who added these files can modify them (which is of course correct, if you have a look at the file permissions).
    How would you go about having only ONE iTunes database on the system? Simply putting the iTunes Db on a shared folder doesn't work well, as can be seen above. Always having to fiddle around with the file permissions isn't exactly comfortable…
    Any suggestions?
    Thanks,
    Alex

    Hm. PowerTunes crashs, when I make it Share my library. I pasted the crash report at http://pbox.ca/13gwy
    Since I cannot know how/if would work (because of the crash…), please correct me if I'm wrong, but wouldn't it also just move the files to /Users/Shared and set permissions correctly? Wouldn't I need to keep on running PowerTunes from time to time, or is it "run once and forget" application (if it works)?

  • Move the Cache files for all user in the domain, which work with the PC

    Is there a possibility to chance the Cache file for all User.
    If i logon with a new user the Cache is written automatically in Proflie of the user.
    can configure to Java in such a way that with announce a user the Cache file get automatically moved to c:\temp.
    Thanks for your help

    oh, too bad, it is part of the requirement-we need to do it automatically through web.
    Any easier method to change the client machine deployment.properties through web?
    Need to deploy the application to thousands PC and the PC configuration may be different one by one.
    oldguy

  • Preference Panes - Install for all users, after the fact?

    Is there any way to get an already installed Pref Pane to install for all other users once it has been installed for the main account? I am hoping for a way that doesn't require uninstalling the current Pref Pane and reinstalling, some have settings I don;t wan't to lose for the main account.
    PowerMac G4 Dual 1.25, MacBook 1.83   Mac OS X (10.4.7)   2 Gb RAM : 250 Maxtor, 80 & 250 WD int. drives : Mighty Mouse : dual mon.

    Thanks for the reply.
    The app (Bamboo Dock) has installed in the root applications folder. When I'm logged in as the administrator I can see the proper icon in the apps folder and run it. however, when I log on as my son I can see the app but the icon is the default icon with the A and the pencil on and the app won't run.
    I didn't have a choice where to install and the app did not ask me if I wanted to install for all users.
    I was wondering if I could run the installer app from the terminal with sudo, then I would be giving the installer app the authority to write the receipt? I don't know if this would work or how to do it if it would.
    Stuart

  • Create LOV's for all columns at the time of folder creation

    Hi,
    I know we can automatically create the LOV's for all the columns of a database table when creating the folder in the EUL. Is this a good practice or should I create LOV's on demand? What is the disadvantage of creating more LOV's than needs to be used other than the disk storage? I also know it is not a good idea to have an LOV on a field that has a lot of values. I am tempted not to create the LOV's in the beginning, but then it becomes a high maintenance issue if I have to come back and create many LOV's later. Thank you for your input.

    Yes, it is not a good idea to create LOVs for all the columns. LOVS should be created only for the columns where parameters will be used. More the number of LOVs, slower the response in opening up your Discoverer reports and if you are using Disco Viewer, the page might take a long time to open up and frustrate the users.
    Also it is a good practise to have LOVs defined on the lookup tables or where there are distinct values in the table and not from where these values are used in the table.
    regards
    http://www.infocaptor.com <--- Free Discoverer Monitoring Dashboards

  • Exchange 2010 Create new folder for select users off the root of the mailbox

    I need to create a new folder for a select set of users.  This folder needs to be off the root of their mailbox.  I  considered using a custom managed folder but we do not have the enterprise CAL’s to support this option.  I only have
    about 15 users so I could do this one by one if needed.  I am not a powershell user but have been using the Exchange Management Shell and would like to us this app to create the folders but I’m not finding the right syntax for the new-mailboxfolder cmdlet. 
    What is the correct method for using the EMS to create a new folder in a mailbox.

    I was checking back thru my notes and seem to remember running this cmdlet:
    [PS] C:\Users\administrator.STOUSE\Desktop>get-mailboxPermission | FL
    cmdlet Get-MailboxPermission at command pipeline position 1
    Supply values for the following parameters:
    Identity: administrator
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess, ReadPermission}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\administrator
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : False
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\StouseSA
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : False
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess}
    Deny            : True
    InheritanceType : All
    User            : STOUSE\Domain Admins
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess}
    Deny            : True
    InheritanceType : All
    User            : STOUSE\Enterprise Admins
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess}
    Deny            : True
    InheritanceType : All
    User            : STOUSE\Organization Management
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess}
    Deny            : True
    InheritanceType : All
    User            : STOUSE\administrator
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Exchange Servers
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Exchange Domain Servers
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {ReadPermission}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Organization Management
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {ReadPermission}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Public Folder Management
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess}
    Deny            : False
    InheritanceType : All
    User            : NT AUTHORITY\SYSTEM
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {ReadPermission}
    Deny            : False
    InheritanceType : All
    User            : NT AUTHORITY\NETWORK SERVICE
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {ReadPermission}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Exchange Servers
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {ReadPermission}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Exchange Domain Servers
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {ReadPermission}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Delegated Setup
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess, DeleteItem, ReadPermission, ChangePermission, ChangeOwner}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Organization Management
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess, DeleteItem, ReadPermission, ChangePermission, ChangeOwner}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Exchange Trusted Subsystem
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess, DeleteItem, ReadPermission, ChangePermission, ChangeOwner}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Exchange Services
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess, DeleteItem, ReadPermission, ChangePermission, ChangeOwner}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\administrator
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess, DeleteItem, ReadPermission, ChangePermission, ChangeOwner}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Enterprise Admins
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
    RunspaceId      : d01ba29d-0e43-45eb-a245-91d19f698bf8
    AccessRights    : {FullAccess, DeleteItem, ReadPermission, ChangePermission, ChangeOwner}
    Deny            : False
    InheritanceType : All
    User            : STOUSE\Domain Admins
    Identity        : STOUSE.com/Users/Administrator
    IsInherited     : True
    IsValid         : True
    ObjectState     : Unchanged
     

  • "expand role" nt waiting for all users in the role to view the notification

    I have created adhoc roles using the following code.
    lv_user_list_txt := 'SYSTECH'||','||'FNATECH';
    wf_directory.createadhocrole (lv_role_name_txt, lv_role_display_txt);
    wf_directory.adduserstoadhocrole (lv_role_name_txt, lv_user_list_txt);
    I have assigned it to the Item attribute of type 'Role' using the following code.
    wf_engine.setitemattrtext (
    itemtype => itemtype,
    itemkey => itemkey,
    aname => 'LIST_OF_APPROVER',
    avalue => lv_role_name_txt
    I have checked the 'Expand role' check box in the notification and assigned the performer as the Item attribute(Role type) 'LIST_OF_APPROVER'.
    But when one user in the role approves or rejects, the notification of the other user is cancelled. the other user can no longer view the notification.
    Ideally, after checking the 'Expand role', the workflow should not proceed to the next node until, all the user have performed an action. But this is not happening. Please help on this :(
    Thanks in Advance.
    Anitha.

    yes, I did. I spent at least 8 hours searching for a solution here, in the forums and tried everything making sense... The EFI downgrade was the only thing that helped.
    My personal opinion is: Apple should offer the EFI downgrade option to all users in an official way. It looks like my favorite vendor does not want to admit they made a hardware+software mistake (the EFI 1.7 update solves some HDD issues on some new MBPs but causes other problems on other MBPs).
    Message was edited by: Bartek Bargiel

  • For all users of the newest MBPs - freezing problem

    I spent the whole last week trying to detect the problem of the freezing OS (every N minutes, a freeze for 20-30 sec).
    If you're experiencing the same issue, don't waste your time uninstalling 'suspicious' software like I did… this helps. Really:
    http://forums.macrumors.com/showthread.php?p=8414998&posted=1#post8414998
    Downgrading the EFI 1.7 (preinstalled or installed with Software Update) to EFI 1.6 solves the problem. No more freezing. The update procedure seemed a bit risky to me but well, it worked (you can use an USB stick, I used my external USB hard drive)
    My tech specs: MacBookPro5,4, 2,53 GHz, 4GB RAM, HDD - Hitachi HTS545025B9SA02, OS 10.6.1
    One more thing: in case of other strange problems, try uninstalling Logitech mouse drivers if you've got those. That one solved my coreservicesd crashing problems. I'm waiting for the incoming update of Logitech.

    yes, I did. I spent at least 8 hours searching for a solution here, in the forums and tried everything making sense... The EFI downgrade was the only thing that helped.
    My personal opinion is: Apple should offer the EFI downgrade option to all users in an official way. It looks like my favorite vendor does not want to admit they made a hardware+software mistake (the EFI 1.7 update solves some HDD issues on some new MBPs but causes other problems on other MBPs).
    Message was edited by: Bartek Bargiel

  • Creating a shortcut of an application on the desktop

    Hi,
    I've just purchased an ibook G4 running on Mac OS X (10.4.8) from apple and wanted to know how can I create application shortcuts on my desktop? Since I'm familar with Windows and Unix, I'm finding a mac a bit of a mission!
    Any suggestions would be very much appreciated.
    Thank you in advance!
      Mac OS X (10.4.8)  

    Welcome to discussions apple freak,
    You can do what Gnarlodious suggested, and it will work perfectly fine, But you should try out the dock. At default it is located at bottom of the screen (though it can be moved to either side), you can put applications there, folders, and basically anything that it will let you drag onto it. You do not need to create a short cut, or alias (basically the same thing). To place something on your dock simply drag it's icon, and let it drop on the dock. You can also set the dock to hide when your mouse is not over it, and to magnify when you mouse is over it. This is also where documents that are minimized are stored until you open them again. You may already know all (or some) of this, but if you haven't yet tried working with the dock I suggest you try it.

Maybe you are looking for

  • Why is no upgrade to 76mb available for me?

    Hi Surely if the upgrade to BT's network is software, there should be some level of increase over my current 22mb on option 2. Even if it's only a few meg? When I run the checker I get: "As a BT Infinity customer you are already getting the best spee

  • SELECT USING ISNULL FILTER

    Post Author: Leonardo Jacques CA Forum: Data Connectivity and SQL Hi all,I'm trying to make a query using a ISNULL filter in ORACLE DB, but it's not working.See my SQL Query:SELECT (COUNT(PERSON.ID))FROM PERSONWHERE ISNULL({PERSON.BIRTH_DATE})Error:

  • Want better Solution for Migration?

    Hi I am Madhavan I Need some guidelines to have a better migration solution. We have oracle financials running on Windows NT platform. For application side we are using smart client and oracle 7 as the database. How to upgrade and migrate the entire

  • Script(new window)

    hi expects, i want to create a new window in exist form i.e for "P.O" and i want print the company logo in backside. please help me.

  • HT2731 how to update payment information on itunes

    How to update your payment information to buy from itunes?