Re-map print queues for clients with powershell

We reinstalled printer queues (share printer name is the same as before) and drivers on server, 99% users can't print properly, is a way to re-map print queues for all clients with PowerShell equivalent to remove and map again?

Hi Brent,
To re-map all of the printers, please check this script written by Boe Prox:
<#
.SYNOPSIS
Logon Script to migrate printer mapping
.DESCRIPTION
Logon Script to migrate printer mappings
.NOTES
Author: Boe Prox
Create: 09 NOV 2012
Modified:
Version 1.0 - Initial Script Creation
1.1 Added Header Text for CSV file
#>
Param (
$newPrintServer = "Server2",
$PrinterLog = "\\LogSVR\PrintMigration$\PrintMigration.csv"
<#
#Header for CSV log file:
"COMPUTERNAME,USERNAME,PRINTERNAME,RETURNCODE-ERRORMESSAGE,DATETIME,STATUS" |
Out-File -FilePath $PrinterLog -Encoding ASCII
#>
Try {
Write-Verbose ("{0}: Checking for printers mapped to old print server" -f $Env:USERNAME)
$printers = @(Get-WmiObject -Class Win32_Printer -Filter "SystemName='\\\\Server1'" -ErrorAction Stop)
If ($printers.count -gt 0) {
ForEach ($printer in $printers) {
Write-Verbose ("{0}: Replacing with new print server name: {1}" -f $Printer.Name,$newPrintServer)
$newPrinter = $printer.Name -replace "Server1",$newPrintServer
$returnValue = ([wmiclass]"Win32_Printer").AddPrinterConnection($newPrinter).ReturnValue
If ($returnValue -eq 0) {
"{0},{1},{2},{3},{4},{5}" -f $Env:COMPUTERNAME,
$env:USERNAME,
$newPrinter,
$returnValue,
(Get-Date),
"Added Printer" | Out-File -FilePath $PrinterLog -Append -Encoding ASCII
Write-Verbose ("{0}: Removing" -f $printer.name)
$printer.Delete()
"{0},{1},{2},{3},{4},{5}" -f $Env:COMPUTERNAME,
$env:USERNAME,
$printer.Name,
$returnValue,
(Get-Date),
"Removed Printer" | Out-File -FilePath $PrinterLog -Append -Encoding ASCII
} Else {
Write-Verbose ("{0} returned error code: {1}" -f $newPrinter,$returnValue) -Verbose
"{0},{1},{2},{3},{4},{5}" -f $Env:COMPUTERNAME,
$env:USERNAME,
$newPrinter,
$returnValue,
(Get-Date),
"Error Adding Printer" | Out-File -FilePath $PrinterLog -Append -Encoding ASCII
} Catch {
"{0},{1},{2},{3},{4},{5}" -f $Env:COMPUTERNAME,
$env:USERNAME,
"WMIERROR",
$_.Exception.Message,
(Get-Date),
"Error Querying Printers" | Out-File -FilePath $PrinterLog -Append -Encoding ASCII
Quote from:
Use a PowerShell Logon Script To Update Printer Mappings
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Similar Messages

  • Print Queue Status Monitor with Email

    I have a brand new Windows Server 2012 R2 Datacenter virtual server that is setup as a print server.  I saw the custom filters in the Print Management console but found out that notifications only work with that console open.  Since I'm not logged
    into that machine all the time, I need a powershell script that can do what the custom filters do in the Print Management console.  Here's what I'm looking for:
    1. When the print server starts the script starts.  This script should always stay active.
    2. The script polls the print queues for a change in status to anything other than Ready every 5 minutes or so.
    3. If the printer name contains "CC2", then email certain people the status of that particular printer.  Only email them once so as to not spam them with constant emails (maybe 1 email per day per status change).
    So basically I'm looking to email my customer service department if one of their printers goes to a status of anything other than Ready.  Is something like this possible with Powershell?

    My scripts compares the customer service printers (printer names starting with CC2) status every 5 minutes.  If the status has changed and there are Offline printers then customer service gets an email.  I'm using Task Scheduler to start the script
    at 6:00am every day and the script will quit around 11:00pm.  It's not very elegant but it will get the job done.  Thanks for all your help!
    # Time limit when the script expires
    $Limit = (Get-Date).AddDays(1)
    $SleepSeconds = 300
    $PreviousStatus = @()
    while ((Get-Date) -lt $Limit)
    $CurrentStatus = Get-Printer -computername SERVER | Where {($_.PrinterStatus -ne "Normal") -and ($_.Name -Match "CC2")} | Select Name,PrinterStatus
    if ($CurrentStatus)
    if (Compare-Object $CurrentStatus $PreviousStatus -property Name,PrinterStatus)
    # Establish Connection to SMTP server
    $a = "<style>"
    $a = $a + "TABLE{border-width: 1px;border-style: solid;border-color: black;border-collapse: collapse;}"
    $a = $a + "TH{border-width: 1px;padding: 0px;border-style: solid;border-color: black;}"
    $a = $a + "TD{border-width: 1px;padding: 0px;border-style: solid;border-color: black;}"
    $a = $a + "</style>"
    $filedate = get-date
    $smtpserver = “smtp.gmail.com”
    $msg = new-object Net.Mail.MailMessage
    $smtp = new-object Net.Mail.SmtpClient($smtpServer )
    $smtp.EnableSsl = $True
    $smtp.Credentials = New-Object System.Net.NetworkCredential(“[email protected]”, “password”); # Put username without the @GMAIL.com or – @gmail.com
    $msg.IsBodyHtml = $True
    $msg.From = “[email protected]
    $msg.To.Add(”[email protected]”)
    $msg.To.Add(”[email protected]”)
    $msg.To.Add(”[email protected]”)
    $msg.To.Add(”[email protected]”)
    $msg.To.Add("[email protected]")
    $msg.Subject = "Printer Status Errors $($filedate)"
    $msg.Body = Write-Output -InputObject (Get-Printer -computername SERVER | Where {($_.PrinterStatus -ne "Normal") -and ($_.Name -Match "CC2")} | Select Name,PrinterStatus,Comment,Location,Portname) | ConvertTo-Html -Head $a
    $smtp.Send($msg)
    $PreviousStatus = $CurrentStatus
    Start-Sleep -Seconds $SleepSeconds
    if ((get-date).Hour -eq 23) {Exit}

  • Monitor print queue for job size

    Hi,
    Problem: Occasionally, some print queues are found with a job that is spooling uncontrolled. Job will reach 2/3GB which will cause services to under perform and sometimes crash.
    We are looking at understanding the reason why the file is spooling uncontrolled. I believe it is something to do with the fact some of the users are roaming users and when moving site, when arriving to a new site they should get the correct printers for
    that site. It is happening that this is not being applied so they print to the printer on the previous site where they were, which seems to cause this behavior.... anyway.. I do not have any more logic details around this.. still exploring..
    The question today is, can I set some sort of monitoring on the local print server to alert me when a job on any print queue has reached a specific size?
    Or perhaps delete the job automatically if it does reach this threshold.
    Thank you

    On Server 2012 use the powershell commands included with the product.  For 2008R2 and prior use the WMI Interfaces and the scripts included with the OS
    prnjobs.vbs to list job size and ID, then when the size is excessive the same script is used to delete the job.
    This information at the scripting center looks like what you wish to accomplish
    https://gallery.technet.microsoft.com/scriptcenter/9b07ec17-a3ae-427d-a417-c95f05fc515f
    Alan Morris formerly with Windows Printing Team

  • One print queue for each job?

    We have customer jobs that last for a year or so. We have a networked HP printer. Is it possible to set up multiple print queues for this same printer, so that we can keep track of which print jobs should be charged to each customer? I can set up a new print queue connected to the printer (although with "Kind" as "Generic PostScript Printer" instead of the printer model) and then I can print to it from the server; and it shows up in the printer list on the client stations (although with a diamond next to it), but when I select it in the Print dialog on the client station I get a spinning beachball and have to force quit e.g. Word. Is this an impossibility, or is there a way to do it?
    PowerMac G5   Mac OS X (10.4.3)  

    At AUC, Dov Issacs posted:
    function(){return A.apply(null,[this].concat($A(arguments)))}
    Beginning with Windows Vista (and also true for Windows 7), the Adobe PDF PostScript printer driver instance must have its Advanced=>Spool Print Documents ... setting to Start printing immediately instead of either of the other settings. The other settings will yield the behaviour that you describe.
    http://www.acrobatusers.com/forums/aucbb/viewtopic.php?id=23380
    The "Adobe PDF PostScript printer driver" would be the "Adobe Printer".
    Perhaps a tweak to your installed Adobe Printer to reflect Dov's guidance will resolve the issue.
    Be well...

  • Need to download printer driver for 3510 with windows 10

    I need to download printer driver for 3510 with Windows 10

    Here is the link to the Deskjet 3510 drivers.
    Please mark the post that solves your issue as "Accept as Solution".
    If my answer was helpful click the “Thumbs Up" on the left to say “Thanks”!
    I am not a HP employee.

  • Duplicating de confirmation for Clients with credit problems

    Hi,
    We are using GATP to confirmed the sales orders quantities. In the check instructions,
    we are using check availability and then RBA (product substitution)
    When I create a sales order for a client with credit problems the confirmed quantity
    is being duplicated after releasing the order.
    The steps I am following are next:
    1.        VA01: create sales order (i.e: order product D 10 PC, I got 10 PC of product E confirmed because of the RBA)
    2.        VKM3: Release the order
    3.        VA03: display the sales order
    (it duplicates the lines with confirmed quantity - i.e: I got line 10: product D 0 PC confirmed; line 11: product E 10 PC confirmed; line 12: product E 10 PC confirmed, so line 12 is repeating line 11)
    We have explore any issues related to the availability check, but it seems to be a problem with the configuration of the credit processing.
    Have you ever had this issue? Any recommendation to solve it?
    Thanks a lot in advance.

    777,
    Are you using product allocation?
    In what case you see duplicate confirmation? in case of partial delivered order? if so check OSS note 1442425.
    Regards,
    Harshil Desai

  • JMS: Looking up queue from client with JNDI

    I have written an MDB which takes messages from a queue and processes them. The messages are posted onto the queue by a java client, which looks up the queue using JNDI.
    My problem is that I don't know how the queue is registered with JNDI. Below are the EJB / OC4J config files. Are these sufficient to make the queue accessible from a Java client which is not running within OC4J? If so, what is the lookup string?
    Thanks!!
    ejb-jar.xml contains the following entry:
    <message-driven>
    <ejb-name>PODProcessor</ejb-name>
    <ejb-class>XXX.core.server.integration.PODProcessor</ejb-class>
    <transaction-type>Container</transaction-type>
    <message-driven-destination>
    <destination-type>javax.jms.Queue</destination-type>
    </message-driven-destination>
    </message-driven>
    orion-ejb-jar.xml contains this entry:
    <message-driven-deployment name="PODProcessor" connection-factory-location="java:comp/resource/agenttojms/QueueConnectionFactories/aqQcf" destination-location="java:comp/resource/agenttojms/Queues/PodQueue">
    </message-driven-deployment>
    application.xml contains this entry:
    <resource-provider class="oracle.jms.OjmsContext" name="agenttojms">
    <description>OJMS/AQ</description>
    <property name="datasource" value="jdbc/MQEmulatedDS"></property>
    </resource-provider>
    The data source is also set up in the data-sources.xml
    The EJB deploys OK.
    My client code will look something like this:
    QueueConnectionFactory queueConnectionFactory = (QueueConnectionFactory)jndiContext.lookup("javax.jms.QueueConnectionFactory");
    QueueConnection queueConnection = queueConnectionFactory.createQueueConnection();
    Queue queue = (Queue) jndiContext.lookup( "WHAT GOES IN HERE?" );
    QueueSession queueSession = queueConnection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
    QueueSender queueSender = queueSession.createSender(queue);
    // etc

    I don't know if you ever got a response, but here's how I have done it. Your client code should look like this:
    QueueConnectionFactory queueConnectionFactory = (QueueConnectionFactory)jndiContext.lookup("java:comp/resource/agenttojms/QueueConnectionFactories/aqQcf");
    QueueConnection queueConnection = queueConnectionFactory.createQueueConnection();
    Queue queue = (Queue) jndiContext.lookup( "java:comp/resource/agenttojms/Queues/PodQueue" );
    QueueSession queueSession = queueConnection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
    QueueSender queueSender = queueSession.createSender(queue);

  • How do I change the print orientation for PDFs with mixed orientation pages?

    I'm sure this is a fairly basic and easily solvable issue, but I've been searching for a solution and can't find one for the life of me.
    The issue: I'm printing a PDF that will be bound book-style, and the file contains pages with mixed orientations (both portrait and landscape). When I print the file, the landscape pages point the wrong way, to the left of the spine, when they should be pointing down to the right of the spine. I've adjusted the print settings for multiple test rounds, and nothing seems to work. Here's a visualization of the problem (apologies for the bad Paint art):
    What the book is doing now when it prints:
    What I need it to do:
    Here's the caveat: I cannot just rotate all the landscape pages counter-clockwise in Acrobat for ease of printing, because it would remove the ability to scroll through the file quickly in Reader or a Web browser, and the same file needs to be both easily readable digitally AND print correctly.
    Is this adjustment a print setting? Is this a tool I'm overlooking within Acrobat? Is this outside the scope of what is adjustable? All advice is welcome, and please feel free to ask any follow-up questions if I explained my problem unclearly.

    If you are trying booklet printing, try to rotate the pages as needed before you print to the booklet. If you are print booklets without using professional imposition software, then Quite Imposing or Quite Imposing Plus should be considered. I believe they offer a demo version.

  • Printing queue for HP Photosmart 2400xi

    I have an HP Pavilion printer and I need to delete some scheduled printing.  How do I locate the printing queue???
    Message Edited by lvnv on 02-18-2009 02:32 PM

    Attached is a link to the list of supported HP printers.  I see the C310, but not the C309.  Are you sure the C309 is supported?
    http://support.apple.com/kb/HT4356

  • Cross browser and platform including *support for clients with older jre"

    Hi there,
    I try to make applet to load and it's methods are to be executed from JavaScript.
    Current i have solve the part where the applet can be load onto the browser regradless of the browser or the platform. This was solved using the html converter provided by the jdk2 1.4.2 .
    However, i can't find a fact or prove so far that the html code will allow clients with older jre than 1.4.2 to load the applet. But i did try to use a older jdk to access the applet. And fine it did ask me to install a newer version of the jdk.
    I used the html converter from jdk 1.3 and use a browser with a high jdk, the end result was the applet wasn't loaded. Furthermore it asked to install the jdk 1.3
    The big question : Is there any way ... of making html code that allows all clients from various browser and platform to run the applet provided that their jdk is equal or higher that jdk 1.2 ? AT the same time, it will not prompt the client to install the jdk 1.2 if he/she has a higher jdk

    Hi there,
    I try to make applet to load and it's methods are to be executed from JavaScript.
    Current i have solve the part where the applet can be load onto the browser regradless of the browser or the platform. This was solved using the html converter provided by the jdk2 1.4.2 .
    However, i can't find a fact or prove so far that the html code will allow clients with older jre than 1.4.2 to load the applet. But i did try to use a older jdk to access the applet. And fine it did ask me to install a newer version of the jdk.
    I used the html converter from jdk 1.3 and use a browser with a high jdk, the end result was the applet wasn't loaded. Furthermore it asked to install the jdk 1.3
    The big question : Is there any way ... of making html code that allows all clients from various browser and platform to run the applet provided that their jdk is equal or higher that jdk 1.2 ? AT the same time, it will not prompt the client to install the jdk 1.2 if he/she has a higher jdk

  • Local settings for clients with print drivers installed on server?

    Greetings,
    We have a Windows Server 2012 R2 that has a print driver installed and shared (Xerox 560 ~ Fiery driver).
    Clients map to this driver. I.E. they add printer from network and select it from the list.
    However, because its mapped, they can't edit the driver or save their settings locally (for example: the accounting code is set in the properties of the driver and not in the preferences).
    If they do, as admin, then those changes percolate back up to the sever driver and then to all clients.
    My question is how do I get the clients to manage their own local settings, these settings being found in the properties of the print driver and not in the preferences?
    I need to be able to set things that are set on the properties (and not preferences) of the driver locally on their computer, but I don't want to have to install the driver manually on every client.
    Is their a way to have a local version of the properties page?
    Is this possible?
    Thank you for letting me know.
    Antoine

    may need to set the server as print server...
    http://support.microsoft.com/kb/244284/en-us
    Best,
    Howtodo

  • WSUS For Clients With No Internet Access

    This is more of a functional question than an issue.
    Right now I have WSUS set to 'Store update files locally' and it works great.  With an ever expanding number and size of updates, I don't have space to keep storing the necessary updates on my WSUS server.
    If I set WSUS to 'Do not store update files locally', will my clients without internet access still be able to get updates?  Many of my devices are behind firewalls that do not permit access to the internet in any form.  I'm trying to avoid adding
    storage if at all possible.
    Thanks,
    Brian

    Correct, if you set WSUS to 'do not store update files locally', then your clients without internet access will not be able to access Microsoft Update to download the files without you creating a firewall exception. Which sounds like an awkward way to do
    it.
    (1) Are you on top of your regular maintenance with WSUS, ie, declining superseded updates, running Server Cleanup Wizard in the recommended order?
    (2) Are you confident that the classification of updates being downloaded is appropriate and nothing un-needed (e.g drivers/absent OS) are being downloaded?  Have you chosen to download the space-hogging express installation files?
    (1) and (2) would be generally better practise then 'do not store updates locally', but if bandwidth is cheap or irrelevant for you, then perhaps you might be tempted to not store updates locally. In your situation where you have a reason to deny clients
    internet access, it would seem like a lot of paperwork, and technical expertise, to only allow them internet access for updates.  (plus, I'm not sure it's possible, just presume it would be)
    What are your numbers?  (size of WSUSContent, WSUSDatabase, space on drives?)

  • F14 not working as PRINT SCREEN for XP with apple numeric keypad

    i posted this elsewhere but i am basically desperate to get a couple things finalized over here so apologies if no one knows how to solve this one. just sort of hoping to get some things out of my hair once and for all...
    i have an apple keyboard with numeric keypad on my mac pro running windows xp and windows 7 in addition to Lion.
    for some reason the F14 key is not getting me a print screen despite spending a /lot/ of time trying to get this working.
    can anyone help me get this figure out finally? there is a lot of info on the net about this but now much help.
    mac tech articles seem pretty sure that F14 should be working.http://support.apple.com/kb/HT5636
    what am i missing?

    hi mooblie.
    a huge (HUGE!) thanks here for the help. i have been googling this off and on for about a year believe it or not.
    anyway, the lowdown appears to be Snip tool in win 7 as you indicate (right click i think it was to a save on taskbar once it was opened) and then i used Applekeys2 which i downloaded while in windows xp.
    two notes for those that come after. 1. i did download keyboard layout creator which is a windows tool but it seemed much more powerful (and complicated) than i needed at least for this initial issue to get me going finally.
    2. i can't remember if snip tool will drop an image file in a folder or on the desktop but i did FINALLY REALIZE that part of my problem here with windows XP was that you HAVE TO PASTE the captured image into a windows image program (i am using "Paint" i think which i also pin to the taskbar). this was a major pain because having gotten used to the mac screenshot i was totally clueless that it did not function so seamlessly in windows!!
    anyway, in short the Mac screencapture could be considered a "screencapture and save to file" and the windows (XP at least) could be called a "screencapture to windows whatever memory and then DON'T FORGET you will have to paste it somewhere..."
    this requires a /lot/ of clickthroughs so i am still looking for:
    A. one shot screencapture to file on desktop funtion in the windows OS's
    B. screencapture /selected/ area instead of whole screen since this also requires post editing that i would like to avoid.
    anyway - BIG THANKS.

  • DNS Registration for clients with WLAN and LAN adapters

    I have read a number of articles and it seems that there are a number of people who have problems with DNS and workstations with both WLAN and LAN adapters. I haven't however found workable solutions.
    Workstation Connection Objective:
    To enable DNS discovery and Ip connection to client workstations regardless of whether the client is using the WLAN or LAN. Enabling users to use either Wireless or LAN adapter adhoc. ie they dock their laptops at their desks, and undock to take their laptops
    to meetings or consulations with peers. I need to be able to discover and connect to the workstations irrespective of the adapter being used at any time.
    Most people seem to try to control which interface is used on the workstations, ie disable WLAN and only use LAN etc. Trying to disable interfaces isn't going to be feasible and its very inflexible.
    I believe I can ensure that the workstations use the NICs in our preferred order:
    1. LAN
    2. WLAN - Our wireless network isn't as fast as the LAN.
    By setting specific DHCP metric for the WLAN Router to be higher(ie 2) than the LAN(1). When the LAN isn't connected traffic will route via the WLAN adapter and when the LAN adapter is connected, its router metric will be lower and it will be the preferred
    gateway/route.
    But how do I solve the DNS resolution for connection to that asset?
    If I disable DHCP Server updates into DNS and allow secure updates from the client. It would be really good if DNS client behaved in the following manner
    1. The LAN adapter(referred to as primary ie LAN) with the lowest metric(ie 1) registers/auto updates DNS with the ip(both A and PTR). Any other Adapters don't register. - ie the WLAN
    2. The Laptop is undocked and the LAN adapter goes offline, the DNS Client then triggers a registration/auto updates its existing DNS entry with the ip from the next adapter(WLAN) with the next lowest gateway metric(2)...hence replacing the first ip registered.
    3. The laptop is docked again, and DNS Client triggers a registration/auto updates its existing DNS entry with the IP from the primary adapter(LAN), replacing the WLAN ip.
    So there is only ever 1 ipaddress registered for a workstation and it will always be a valid address. Then I don't need to be concerned about whether the user has the wireless turned on and docked.
    Being able to discover and communicate with all our workstations in our sites is crucial requirement....
    This microsoft article says, http://technet.microsoft.com/en-gb/library/cc771255.aspx
    Dynamic updates can be sent for any of the following reasons or events:
        * An IP address is added, removed, or modified in the TCP/IP properties configuration for any one of the installed network connections.
        * An IP address lease changes or renews with the DHCP server any one of the installed network connections. For example, when the computer is started or if the ipconfig /renew command is used.
        * The ipconfig /registerdns command is used to manually force a refresh of the client name registration in DNS.
        * At startup time, when the computer is turned on.
        * A member server is promoted to a domain controller.
    However from what I am reading, both adapters(LAN,WLAN), if configured to update DNS, will register their Ip addresses. Which leads to an invalid DNS entry if the laptop is undocked, as the IP for LAN adapter isn't removed.
    Has anyone solved this problem for their organizations without
    1. Controlling which adapter is used - large management overhead
    2. Only allowing one adapter to register with DNS
        - If using LAN adapter for DNS, then anytime the user is using WLAN, their workstation doesn't have a valid DNS entry. Which also impacts Kerberos.
        - If using the WLAN, then we would have to invest a large amount of money into Wireless to provide the necessary bandwidth
    3. Setting GPO's to configure dns updates every 30mins on clients
        - Inconsistent results...which I think is sometimes a worse problem
    4. Defining separate DNS suffixes for their WLAN networks (I read some people did this)
        - This doesn't remove an invalid DNS entry ie the ip(LAN adapter) DNS entry if the laptop is undocked
        - It also creates problems with kerberos, if the host is registered under a separate DNS suffix from the Active Directory domain name

    Hi,
    From my point of view, DNS can't be so smart.
    As a workaround, please try the steps below,
    Disable the DNS register of wireless adapter
    Put "ipconfig /regiserdns" in a bat file
    Everytime when the wired network is undocked, run the bat file.
    If the wired network is docked, wired adapter will register the DNS record.
    When the wired network is undocked, run the bat file, then the wireless adapter will register the DNS record.
    If the wired network is docked again, wired adapter will register the DNS record automatically.
    Best Regards.
    Steven Lee
    TechNet Community Support

  • Automatic Network Printer Installed for clients

    Dear All,
    Is there any possible ways that if every clients can get Automatic Share printer installed on machine that they current log on?
    We have Windows Server 2008 R2 as our Domain Controller.
    Please help.
    Best Regards,
    VeasnaYim

    Hi,
    According to your description, my understanding is that you want the network printers to be automatically added on the client machine.
    You may reference the link below for Deploying Printers by Using Group Policy:
    https://technet.microsoft.com/en-us/library/cc754699.aspx
    And, more information about the policies specific to managing printers and how to enable or disable printer management by using the Local Group Policy Editor, reference:
    https://support.microsoft.com/en-us/kb/234270?wa=wsignin1.0
    Best Regards,
    Eve Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for

  • Acer Aspire One will only connect via Fon now on H...

    Since activating Fon on my BT Home Hub my Acer Aspire One - running Linux Linpus - will no longer log on to the 'normal' wireless connection on my hub, only Fon, which has limited bandwidth, etc. Anybody know why? Have a solution? I've 'proved' it's

  • Thread IMMEDIATE stopping

    Hi, Here's my problem : I'm building a Command station that has to be able to start an execution Thread and also to stop it immediately (a.k.a PANIC BUTTON) No problem with starting the Thread, but the problem is with the stopping. The thread i'm sta

  • I need help fixing my daughters ipod

    My daughter has an IPod touch 4 gen. She has dropped it several times. The screen is cracked in the lower right hand side. In the upper part of the screen there is a black part and the color is messed up. What could this be? We are replacing the scre

  • One ipad two itunes accounts

    We want to buy an ipad.  We have two separate itunes accounts.  Is it possible to transfer all our music, pictures, etc... from both our iphones to one ipad?  We don't want to buy two ipads.  Would like to have a family ipad.

  • My computer won't run certain applications anymore

    Recently my computer stopped running certain applications (Specifically Microsoft Word, and Rosetta Stone language programs). I thought that it might be related to the quicktime 7.2 update because it started acting up around the time that I downloade