Windows 8.1 not showing newly added printers

Hey guys,
I just added a new printer to a Windows 8.1 (Surface Pro 3) everything went fine but it never showed up in the printers list, so I tried to add it again and it wants me to give it the name as Copy 1, that to me says it's already there, but it's not showing.
Any ideas?
Thanks.

Hi,
As mentioned by Robert, you could try "Get-Printer" in power shell to check printer list.
Also could you ping your network printer or it was a shared printer?
more information about Get-Printer in power shell
https://technet.microsoft.com/zh-cn/library/hh918358.aspx?f=255&MSPPError=-2147217396
Regards,
D. Wu
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Similar Messages

  • LOV does not show newly added data in the same session

    Hi guys,
    I work with JDeveloper 11g Release 2. We use Oracle ADF to develop our web app.
    In a page we have a LOV (say the page name is "a"). The related data for that LOV is inserted to the db in another page ( say the page name is "b").
    When new data is added in the page "b" and goes directly to the page "a" the LOV does not show newly added data. But if the user log out and log in again
    LOV shows newly added data correctly.
    Is there a way to show the newly added data in the same session without logging out? Please help.
    Regards !
    Sameera.

    Add the following method in your ViewRowImpl base class:
    public void refreshLOVAccessorQueries() {
        List lovs = getViewDef().getListBindingDefs();
         if (lovs != null) {
             for (Object obj : lovs) {
                getListBindingRSI((ListBindingDef)obj).getRowSet().executeQuery();
                 ListBindingDef lbd = (ListBindingDef)obj;
    Export that method to the Row Client interface, add him to the pageDef, and invoke in the executables section of the pageDef:
        <executables>
    <invokeAction Binds="refreshLOVAccessorQueries" id="callRefreshLOVs"
    RefreshCondition="#{!requestContext.postback and empty bindings.exceptionList}"/>
       </executables>

  • BPM Process does not show newly added task

    I added a new task to my current BPM Process which has several tasks already built into it and they work when deployed. When I execute the workflow and get to that step, I get the following message: Details not available for this task. I am using jDeveloper 11.1.1.5. I created my page with ADF. I can see the pages for all the rest of the tasks in my process but not this newly added step. I have checked the source for this task against other tasks in the process and it looks the same. Does anyone have an idea what I might need to change or add in order to make this work?
    Edited by: user10279592 on Jan 13, 2012 7:20 AM

    If you're getting the Server 500 error and it is not an initiator task, what are you seeing at the bottom of your log file?
    If you're getting the Server 500 error and it's an initiator task, then there is a trick to figuring out the real problem (close the dialog -> refresh the worklist -> select the work item at the bottom of the list). The initiator activity makes it necessary to do this additional step to see what the issue is.
    Hope this helps,
    Dan

  • Refresh of a Report Builder Dataset does NOT show newly added field

    I'm working with Report Builder 2.0 (we don't plan on getting SQL 2008 R2 - so NO 3.0 for us!) and have found that if I have an existing report using an existing stored procedure (it has 4 existing parameters) and I add a new field to the stored procedure
    it will not refresh the
    data set.  I have gone to the DataSet properties and executed the query(SPROC) where it does show the new field (so I know the sproc will
    execute), but when I click OK and hit Refresh Fields it stops responding.  I also tried the same steps without the Refresh Fields and still stops responding.  I also tried to add the field name and it errored out as invalid.
    The only work around I've found is to
    create a new dataset referencing the updated SPROC with a different name, deleting the old dataset and then re-naming the newer dataset with the old
    one's name so all the field references are the same.  I do know that in the case of renaming
    a field in a sproc that this would end BADLY because there is no way any of the old field's references would work.  
    But it seems odd I have to go through so much to refresh for new fields, so perhaps I'm missing a step in dealing with this situation.  Any recommendations would be appreciated.

    Hi CinBH,
    I understand that the Report Builder 2.0 hangs while flush the dataset by executing the query. In that case, I think it is necessary to capture a user dump when the problem occurred. And then, you can send the dump to Microsoft CSS support. Support Professionals
    from Microsoft will assist you to solve the problem.
    I am providing the steps below for you to gather the hang dump or crash dump to further work on this issue,
    Hang dump,
    a. Open Report Builder as usual, and wait for a while.
    b. When you found that the Report Builder application hang, and was not responding, please open TaskManager by one of follws,
    - Pressing “Ctrl + Alt + Del” button and then click “Start Task Manager” item.
    - Or right-clicking your task bar, click “Start Task Manager”menu.
    c. Once the Task Manager opened, switch to Process tab, find the “Report Builder” process MSReportBuilder.exe.
    d. Right-click the item, click Create dump file.
    e. After that, it will prompt a window and let you know the location of the dump file.
    You can copy the hang dump or crash dump file to your development machine configured with symbols files, and open it in Visual Studio 2008. Next, you can analyze the error / exception, and call stacks to see why the error happens.
    Thanks,
    Eileen

  • Not Show Newly  Added Row

    i want to when after execute emptyrowset() in view object.
    and add new row to view object adding values to new row object.
    I checked all the values already added to new row object.
    but in out put adf table didn't show add new row.
    below the my code
    BindingContext bc = BindingContext.getCurrent();
    JUApplication japp =
    (JUApplication)bc.getCurrentBindingsEntry().get("AMDataControl");
    AMImpl Am =
    (AMImpl)japp.getApplicationModule();
    CCBSViewObjectImpl voDetailsVO =
    Am.getDetailsVO();
    voDetailsVO .executeEmptyRowSet();
    Row newRow = voDetailsVO.createRow();
    newRow.setNewRowState(Row.STATUS_INITIALIZED);
    newRow.setAttribute("Id", next_seq);
    newRow.setAttribute("No", "3569");
    newRow.setAttribute("Time", "15");
    newRow.setAttribute("AgentId", "Sameera");
    newRow.setAttribute("Type", "SA");
    newRow.setAttribute("Status", "VF");
    newRow.setAttribute("BackType", "N");
    newRow.setAttribute("Remarks", "NOT CLEAR");
    newRow.setAttribute("UpTime", new Date());
    newRow.setAttribute("ResolvedTime", new Date());
    voLastCallDetailsVO.setCurrentRow(newRow);

    This is my mistake original can use correct VO i have below mentioned.
    voDetailsVO .executeEmptyRowSet();
    Row newRow = voDetailsVO.createRow();
    newRow.setNewRowState(Row.STATUS_INITIALIZED);
    newRow.setAttribute("Id", next_seq);
    newRow.setAttribute("No", "3569");
    newRow.setAttribute("Time", "15");
    newRow.setAttribute("AgentId", "Sameera");
    newRow.setAttribute("Type", "SA");
    newRow.setAttribute("Status", "VF");
    newRow.setAttribute("BackType", "N");
    newRow.setAttribute("Remarks", "NOT CLEAR");
    newRow.setAttribute("UpTime", new Date());
    newRow.setAttribute("ResolvedTime", new Date());
    voDetailsVO .setCurrentRow(newRow);

  • Windows SMB shares not showing in finder

    hi,
    i'm using 10.5.8 on a powermac G5 in the office and recently experienced some difficulties regarding SMB shares. there are two Win XP 32bit machines in the office network, one Win 7 64bit machine and the powermac.
    1) usually, the powermac could see and access all three windows machines via finder's sidebar. that stoped working some weeks ago. none of the three PCs shows up in the sidebar now. when i use finder's "connect to server" feature, the connection is established without problems. network printing to one of the XP machines also works fine. the mac's firewall settings where set to “Set access for specific services and applications” all the time, showing AFP and SMB shares enabled. just out of curiosity, i deactivated the firewall… and voila: my three PCs showed up in the finder sidebar again. changed it back… no PCs there
    what's that? why did it work before, with the firewall enabled, and all of a sudden it doesn't work anymore and i have to shut down the firewall, to see my windows shares?
    2) for some time it was sufficient that i could access the windows shares from my mac. now my colleagues needed to access the mac from their windows machines. as they do not need to have access to my entire home folder, i added the relevant (sub)folder from my documents folder via SMB guest sharing, setting the access rights to "read&write" for everyone, so that no password was needed for guests accessing that folder. however, all three windows machines could only see the standard public folder with its drop box, but not the newly added folder. experimented for over an hour or so, changing settings, trying to add other folders… until i found out, that the folder will only show up on the windows network, when it's located on the top level of my home folder, but not, if it's located in a subfolder (i.e. in documents, music, etc.)
    is this meant to be that way? or am i doing something wrong?

    If this is still driving you crazy...
    I had the same problem and by figuring out which machine was the Master Browser I managed to fix it. I have a Windows 7 system and it had taken over as the Master Browser (probably because I had to rebuild my Mac). I disabled the Computer Browser service on the W7 computer and a 2003 server in my network automatically took over as the Master Browser. All of the Windows machines immediately appeared under Shared Items on my Mac sidebar.
    I followed the instructions from:
    http://robmulally.blogspot.com/2009/03/macbook-master-browser-and-my-mate.html
    - on how to figure out which machine is the Master Browser in the network. The link came from a different discussion on the same issue (https://discussions.apple.com/thread/1877116?start=0&tstart=0). There are also instructions (although somewhat vague) on how to make your Mac the Master Browser.
    I hope this is of some help.

  • ITunes 10.6.1 update does not show newly imported music in viewer but files are in iTunes media folder, how to correct?

    Updated to iTunes 10.6.1.7 today from 10.5 on a Win 7 SP1 64-bit machine and attempted to add new music to the library by both drag-n-drop and import files; this new music does not show up in the library viewer but has been added to the iTunes media folder. My iTunes 10.5 version was working properly prior to the update. Any recommendations to correct this issue? Thanks!

    Immediately after the install, Windows was rebooted. I also attempted multiple variations of closing and restarting iTunes and/or reboot Windows. iTunes was unresponsive to mp3 files being added. Since I was unable to see the added music files to the library, I did not try to add other files.
    Out of frustration, I let iTunes run over night and to my surprise the added music appeared in the library viewer the following morning.  I can now add new mp3 (and AAC also) music files to the library and it immediately appears in the viewer.  How or why it now works is a total mystery.

  • Itunes not syncing "newly added playlist" on my iphone 5!

    I am running IOS 7.0.4 (11B554a) on my iphone5 16Gb, modem firmware 5.02.00. i have latest iTunes (V. 11.2.2.3).
    Well, as usual i add new songs to my iTunes library, which also show up in 'newly added' playlist in iTunes. So over syncing, it should also be visible in my iPhone in the 'newly added' playlist on my phone, BUT it does not appear in the playlist, HOWEVER, the song does sync and appears in the normal songs list. It is annoying... it never occurred to my previous iPhone.
    > I tried unsyncing my whole music library and synced it again but of no avail.
    So any suggestion or solution?? will be highly appreciated! Thanks!

    Problems Syncing Playlists & Songs in iTunes with Computer & Apple Devices
    I've seen variations of this question on the Apple community boards and I myself have struggled with this for months now and I believe I have a solution, at least for what seems to be one of the problems.
    If you have purchased a subscription of iTunes Match, then all of your data is filtered through the glorious cloud. ALL computers and devises involved in syncing data must have iTunes Match enabled for syncing to replicate.
    This solved my particular issue within 2.1 seconds.
    1) On your computer open iTunes. Go to the menu item 'Store' and click on 'Turn on iTunes Match'.
    2) On your iPhone open 'Settings', 'iTunes & App Store', click to turn on 'iTunes Match'.
    3) For good measure, restart your computer and iPhone (probably not necessary but I did).
    Hopefully that helps if not, I hear Google has some type of phone gadget..

  • Web Analysis data layout does not reflect newly added attribute dimension

    Hi,
    We newly added one new attribute dimension. If any new report creation in Web Analysis reflect that dimension. However, the reports which are old(created before the addition of new dimension), does not show the newly added dimension.
    Please advice.
    Thanks,
    Meenakshi

    Thanks for this.
    I have tried assigning the new DB connection. However, still it did not work. Does the data layout displays dimensions according to reports. I mean, can we restrict the visibility of dimension at report level? Please advice.
    Thanks,
    Meenakshi

  • Printservicelookup does not list newly added printer in OAS R2.

    Hi,
    We are using OAS R2 Server and JDK 1.5. In our application we have a scenario where we will display the list of printers configured to the Server. The below is the code we are using to get the list of printers configured in the server.
    Code:
    AttributeSet aset = new HashAttributeSet();
    PrintService[] services = PrintServiceLookup.lookupPrintServices(null,aset);
    The above code works fine to display the existing printers configured in the server. But when ever we add a new printer to the server, it is not listed. We have even restarted the server and the machine after adding the printer,Still it does not display the newly added printer. Any help would be greatly appreciated?
    P.S: The same code works fine in OAS R3 server, after restarting the server it displays the newly added printer.
    Regards,
    Karthik

    I have the same problem. Have you found any solution to this issue?

  • Windows Vista Computer not showing up in finder

    Hi, my WIndows Vista computer is not showing up in finder under Shared. I can connect to my PC from my mac by clicking on finder, go, connect to server and typing in the PC's IP Address, Username and Password. I can also see my Mac computer from my PC running Windows Vista.
    What's weird is that it was showing up for awhile but I recently changed my network key and unchecked file sharing on both my Mac and PC.
    Afterwards I re-enabled file sharing on both my mac and Vista computer but my PC won't show up in finder.
    I can connect to my PC and see the computer in finder but when I click eject, it disappears. I would like it to remain in finder. Is there some setting that I need to enable? Please help

    Assuming that the missing machine is part of the same Workgroup/Domain:
    Open Terminal and enter "nmblookup -M workgroupname" (without the quotes, and replacing workgroupname with the name of your workgroup or domain.
    This will list the IP address of the machine that is the "master browser" of your network. If you are on a domain, the address should be that of your domain controller. There should only be one ip address listed.
    You can then get that machine to list the shares that it see on the network by entering:
    "smbclient -L ipaddressofmasterbrowser"
    You should be able to just press enter when it asks for a password.
    This will list available shares and servers.
    Regards,
    Rodney

  • Windows 8.1 not showing up in WSUS 3.0 SP2 Windows 2003

    As the title says really, all Windows 7 etc work a treat, but any Windows 8.1 are not showing...
    Any ideas peeps?
    many thanks
    Kev

    Am 04.09.2014 schrieb kevin_cambs_uk:
    As the title says really, all Windows 7 etc work a treat, but any Windows 8.1 are not showing...
    Get they W8.1 Clients the same GPO Settings like the W7 Clients? Pls
    verify the sttings direct on the W8.1 Clients. If the settings are
    there, pls look in %windir%\WindowsUpdate.log for Errormessages.
    Servus
    Winfried
    Gruppenrichtlinien
    WSUS Package Publisher
    HowTos zum WSUS Package Publisher
    NNTP-Bridge für MS-Foren

  • Itunes on Windows 8.1 not showing imported music

    Upgraded my computer from Windows XP (32 bit) to Windows 8.1 (64 bit)
    On itunes on the XP machine, Organized all iTunes music together. Exported library and then copied to an external drive.
    On the Windows 8.1 machine, downloaded and installed iTunes. Copied the iTunes files from the XP machine to the 8.1 machine.
    Started iTunes on the W.8.1 machine. Shows and plays all the playlists and albums that have been purchased from iTunes. Does not show any of the albums that were imported from my CDs. Looking at the iTunes music folder, all the imported CDs and there contents are listed in the folder. iTunes is just not picking them up when it shows the albums and playlists. I think it may have something to do with Apple's copyright check and iTunes is ignoring imported CD. How do I get iTunes to recognize and show the imported CDs? Thanks

    iOS: Device not recognized in iTunes for Windows

  • Windows 7 drive not showing up in start-up screen

    So as you can see the picture on top, it's a picture of my bootcamp and I have installed windows 7 but the problem in here is that my drive of windows 7 in the start-up screen (when you press alt/option when the computer turns on) would not show and I tried installing my windows for about 7 times again and again becuase it would not work does anybody have the same problem or got through this problem? please help

    yeah, I had a feeling it might be Tuxera causing it, wanted to see if there was another solution other than uninstalling it.
    I tried disabling it in the pref pane and that didn't fix the issue, so I'm assuming it would need to be uninstalled.
    As long as I am able to boot into Windows when needed (which isn't very often), I'm not too concerned.  Its a little inconvenient to have to hold Option during startup to do it, but it works.
    Whats annoying too is that when using BootCamp control panel in Windows to restart into OSX, it boots into the emergency partition for Lion instead of Lion.  So, guess holding Option at startup is the only option both ways!
    Thanks for the help.

  • PSC 1350 software not working - not showing up in "printers and faxes" as a choice

    My mom's HP PSC 1210 won't feed the paper anymore.  After cleaning the rollers and making sure regular procedures are followed the paper just doesn't feed.  She has an older HP laptop and doesn't like change - she's 92 years old!
    I belong to a computer club for over 30 years and someone gave me an HP 1350 AIO printer that makes copies so I know it's working.  I have a Dell Dimension E510 computer with XP that someone gave me as a computer I can experiment with. 
    So I went to the HP site and first downloaded "HPSupportSolutionsFramework-11.51.0049" and then the HP Officejet and PSC Full Feature Software and Driver file and ran it.  Nothing seemed to happen after it "installed", no messages at all and it doesn't show up in "printers and faxes".
    So then I decided to download the HP Officejet and PSC Basic Software and Driver  file and also ran it with the same result.
    Where do I go now and what can I do to get the 1350 working - first on the Dell computer, then on my mother's?

    Hi safewaterman,
    Welcome to the HP Forums.
    I see that you are having some issues when attempting to get the printer installed on to your computer.
    When doing the installation, do you have a USB cable connected before you run the download or after?  If you do have it connected before, the computer will not see the printer when doing the installation.
    We need to remove the USB cable from both printer and computer and leave it disconnected.  Uninstall all of the software and drivers from the computer.  Once the uninstall is complete, restart the computer. 
    When the computer is back on, make sure that you do not have any Firewall or Anti-Virus protection running on the computer. 
    Run the Download of the Full Feature Software and Driver bundle and wait for the installation to prompt you as to when to connect the USB cable.
    Let  me know how you make out with the steps I provided.
    Cheers,  
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

Maybe you are looking for