Ie navigate not hiding in Windows 8.1

Here is part of my powershell.
$ie = new-object -com InternetExplorer.Application
$ie.navigate("https://blah-my.sharepoint.com")
#$ie.visible = $true #Uncomment this for debugging
In Windows 7 the IE window does not display.  In Windows 8.1 it does display.  Any ideas?
Thanks,
Jason

Hi Oliphanj,
I‘m writing to check if the suggestions were helpful, if you have any questions, please feel free to let me know.
If you have any feedback on our support, please click here.
Best Regards,
Anna
TechNet Community Support
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

  • Why does In Design CS 5.5 not remember my window size?

    You see how I like to have my middle window "sized" to have it not hiding behind windows?
    http://www.ccwatershed.org/media/photologue/photos/444_INDD.jpg
    Why does In Design not remember my window size, no matter how many times I save the windows layout?
    thanks!

    Use the application frame. It’s under the Window menu.
    Bob

  • Satellite A - DVD drive not seen by Windows Explorer

    THe DVD deive on D is not seen by windows explorer. It used to work but has now disappeared. The dvd hardwars starts up at boot then ceases.
    Any ideas anyone?

    Try removing the CD/DVD Filters from the Registry.
    When CD/DVD related software is installed (such as iTunes, Nero, virtual CD software), they install filters into the registry, which can cause compatibility problems.
    1) Run Regedit (Start -> Run -> Regedit)
    2) Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Contro l\Class\{4D36E965-E325-11CE-BFC1-08002BE10318}
    3) In the right pane, delete the "UpperFilters" key, and delete the "LowerFilters" key.
    4) Reboot.
    If your CD/DVD programs stop working, you will need to reinstall them (preferably with an updated version).
    This utility can remove the filters for you:
    http://www.csd.toshiba.com/content/support/bulletins/su2065061/RmvFltrs.exe

  • My wifi driver is not working with windows 8.1 in my MBA2013?

    My wifi driver is not working with windows 8.1 in my MBA2013?
    i installed windows 8.1 with bootcamp, everythigs seems to be working fine except the wifi,
    please help me to solve this problem,,
    thanks

    neokenchi wrote:
    hi erabbath,
    Welcome to the Forums.
    If you have the Intel Centrino N2230 Wireless + Bluetooth adapter, can you try to:
    1. Navigate to the Control Panel (large icon view) > Devices and Printers and try to pair a bluetooth device (i.e. Bluetooth Headset) and observe if it gets detected under the device list.
    2. If the Bluetooth Headset is listed but it's not working try toright click on it > choose Properties. On the bluetooth properties Window, go to the Services Tab and check all the appropriate bluetooth services.
    Sample picture
    Let me know your findings.
    Regards
    Thank you very much for your answer,
    I went to Control Panel  > Devices and Printers and i tried to add a new device as the bluetooth doesn't appear this is what i got. By the way the bluetooth was on.
    Link to picture
    And this is what i have on the Bluettoth
    And it search endlessly whereas before the upgrade it was working properly,
    All the drivers are up to date as well as windows updates are all installed
    Thanks in advance for your help
    Regards
    Moderator note; picture(s) totalling >50K converted to link(s) Forum Rules

  • Hiding Applet Window

    Hi there!
    I need help on hiding applet window.
    I have tried using hide() method but the compiler gives deprecated warnings and ask me to refer to documentation but I dont know how to use it.
    Does anyone knows how to hide/minimise or whatever so that I can make it "invisible" to the user?
    Thanks in advance.

    On the left hand side of this page under Documentation is APIs. Click on that. When you get to the next page, choose a version of java (if you dont know, choose J2SE 1.4.2 API Specification).
    On the left of that page, under All Classes, scroll down till you see JApplet. Click on it.
    In the right hand pane, scroll down till you see the Method Summary section. Look for hide(). It's not there!
    Scroll down further and look in each Methods inherited from class... section. You will find hide under java.awt.Component. Click on it. This will bring you to the page for Component.
    In the right hand pane, scroll down till you see the Method Summary section. Look for hide(). Bingo!

  • Pavilion dv6 mic not detected. Windows 7 64-bit.

    mic not detected during speech recording, skype, or ym. tried setting up mic in the configuration in control panel, installing updated driver for idt high def audio CODEC but still does not work

    Hello waynenixcpa!
    Congratulations on the new computer!  I would be happy to assist you with the syncing issue.
    First, I would like to suggest deleting the current partnership.  Instructions for deleting the partnership: 1) Ensure the device is disconnected from the computer.  2) Launch WMDC.  Navigate Start > (All Programs) Windows Mobile Device Center.  3) From Mobile Device Settings, click >>more (located in the lower-right corner).  4) Click End a partnership.  5) Select the partnership then click End partnership.  Next, I would soft reset your phone, and restart your computer.  Then you can re-create another partnership for syncing with Outlook and your device.  Now you should have the option to sync Contacts, Calendar, Email, Tasks and etc...
    Please let me know how this works out for you.

  • Exporting Crystal Report to HTML is not working in Windows 7

    Hi Sir,
    I am trying to export Crystal Report to HTML format using VB.NET code. Functionality is working fine at Windows XP Environment (Save to Disk, Open an Application and Email Attachment). But the same functionality is not working at Windows 7 Environment (both 32-Bit as well as 64-Bit).
    Below is the code to Exporting Crystal Report to HTML in VB.NET.
    Dim CrDiskFileDestinationOptions As New DiskFileDestinationOptions
    Dim CrFormatTypeOptions          As New HTMLFormatOptions
    Dim vFormat As Integer
    Dim CrExportOptions As New ExportOptions
    Dim vRdReport As New ReportDocument
    Dim sfd As SaveFileDialog
    Dim vFileName As String = Nothing
    vRdReport = vRptSource
    sfd = New SaveFileDialog
    If Not (vRptPath = "") Then
        sfd.InitialDirectory = vRptPath
    End If
    sfd.Filter = "Webpage, Complete(.htm;.htm)|.htm|Web Archive, Single file(.mht)|.mht|Webpage, HTML only(.htm;.html)|.html"
    If sfd.ShowDialog = DialogResult.OK Then
        ' Set the disk file options.
         CrDiskFileDestinationOptions.DiskFileName = sfd.FileName.ToString()
    Else
         Return
    End If
    CrExportOptions = vRdReport.ExportOptions
    CrFormatTypeOptions.HTMLFileName = vFileName
    CrFormatTypeOptions.HTMLEnableSeparatedPages = True
    CrFormatTypeOptions.HTMLEnableSeparatedPages = True
    CrFormatTypeOptions.HTMLHasPageNavigator = True
    CrFormatTypeOptions.UsePageRange = True
    With CrExportOptions
                        .ExportDestinationType = ExportDestinationType.DiskFile
                        .ExportFormatType = ExportFormatType.HTML32
                        .DestinationOptions = CrDiskFileDestinationOptions.DiskFileName
                        .FormatOptions = CrFormatTypeOptions
    End With
    vRdReport.Export()
    Catch ex As Exception
            MsgBox(ex.ToString)
    End Try
    Code working fine at Windows XP, But it is not woking in Windows 7 environment.
    Please can anyone share your valuable thoughts or ideas reg. this.
    Thanks in Advance
    Deivanayaga Perumal D.

    user13509659 wrote:
    Run this code to reproduce the issue.Which issue?
    It looks like inheritance is broken in the component hierarchy for JFrame in Windows 7 JDK 1.6.0_23-b05. The only thing remotely related to inheritance in your code snippet is the WindowListener, which does little. See camickr's advice about built-in exit management.
    EDIT - using the post title as a clue, I realize you may be talking about the component hierarchy, and whether the contentPane's background is visible through the upper layers. Instead of guessing, I'd prefer you describe your "issue" accurately (observed vs expected behavior).
    Edited by: jduprez on Feb 10, 2011 1:01 PM

  • IPod Touch, not detected in Windows or iTunes...

    First of all, hello to everyone...
    i want to say that i read a lot EVERYWHERE about my issue and still i couldnt find a solution...
    the problem is easy, i have a 3rd gen ipod touch, OS 4.2.1 now fully working... but, it's not detected in windows or itunes, as simple as that, and as u all have read in lots of other posts...
    my ipod is now working because i took it to an apple store and they charged it in a MAC and they had no problem at all. the MAC detected the ipod, with all its content and my ipod's name...
    but when i took it home -this has been hapenning since maybe... 5 MONTHS!-, i plug it in my PC and nothing happens...
    ok, first of all, my spec... win vista home premium 64 bits, last version of itunes...
    i tried ALL the solutions provided in APPLE official support page, and nothing happens... that means:
    1- completely uninstall itunes and then reinstalling it... i ALSO FORMATED my entire hard drive twice!!!!
    2- tried all USB ports and even an entirely different PC and nothing happened
    3- bought 3 different IPOD to USB cables and nothing happened
    4- tried setting ipod to restore, that way itunes SOMETIMES detected the ipod but i coulnt restore because of different error codes, so i had to take it several times to apple store to "unblock" it...
    the only way it works -detection and charge- is with MAC computers or dock systems such as an iHome my gf has thats the way im charging it now, but otherwise it wont work...
    i would really appreciate any help, since idont know what else to do!!
    thx in advance!!

    HI I was having some other problems getting my itouch to restore because it was not being recognized in itunes and kept erroring out. Now it has finally restored after I updated all kinds of drivers and removed and reinstalled itunes and apple software a million times,(yes this is all after installing itunes 8.1 and paying for an itouch upgrade as well) Now itunes says it cannot do anything with the ipod because it is getting an invalid response from the device. So it won't put anything back on my itouch or even show that I have plugged it in. I emailed tech support, If I find anything out I'll let you know, will you do the same for me?

  • 5th Gen Ipod not recognized by windows or itunes. Have tried it all. Any Ideas?

    Hello everyone. I have a 5th generation Ipod I recently purchased that I'm having what seems to be an common issue. When I connect the ipod to my computer via USB, the Ipod is not recognized in windows or Itunes. Occasionally the Ipod will charge when connected but not always. Though this is the same for the old wire I used and the new one I purchased today. Even when shown charging the Ipod is not recognized and there is no noise that a device has been connected. I have tried the 4 R's (without Restore) which I can't do, chaninging the drive letter, disabling start up software,uninstalling and reinstalling all Apple Software. I have tried connecting to another computer and have gotten the same result. When I check the diagnostic screen on the ipod it shows that a usb cable is detected. I have upgraded all my driver software, disabled and reenabled them. I'm almost 3 hours from the nearest store so that it out of the question. I'm curious if anyone has any other ideas and will try anything you think might be the issue and fix. Thank you for time.

    From my experience, the only way you're gonna get a PC afflicted with this disease to work with a 5th gen nano is to roll back to an earlier version of iTunes.  Those affected have been exhausted by this ongoing issue.  To update or not to update?  And I always say never update unless you have to, and turn off all that auto update mess!
    I have two core2duo lappies running 32b vista.  My workflow dictates 32b fyi.  One is acer aspire running itunes v 11.1 (.0.126),  5th gen nano was originally formatted and works just fine on this machine to this day.  My other is the bigger badder lenovo thinkpad and the 5th gen will NOT mount using any version of itunes past 11.0 (.1.12)  Windows mounts it just fine.  itunes is not having it.  no shirt no shoes no service.
    I have both a 4th and 5th gen nano.  The 4th gen works great on both machines, I even successfully tested it with the latest version (11.1.5) before subsequent deletion on the thinkpad!  Weird huh?  I think my next experiment might be to restore my 5th gen w/ a Mac and theeeeen plug it into PC itunez.
    I'm at a loss on the thinkpad.  Scanned for intruders.  Cut the Lenovo bloat.  Executed system and reg maintenance.  Took down msconfig to a safe mode + itunes level to attempt to resolve possible sw conflicts but to no avail.  NO NO NO.  Every single dang port, every time on the thinkpad.  Has me feeling like others might get the same treatment by the next itunes update.  :|
    So in summary for me:
    5th gen nano and thinkpad are a NoGo on 11.1^  last working version for me = 11.0.1
    5th gen nano is working on an acer aspire 11.1.0  but no way in the world am I updating
    4th gen nano is kicking 5th gen nano's @zz so what would make me want to buy a new ipod?

  • TS1363 I'm trying to update to newest software, but during proccess, an error accured, now the iphone 4s wont do anything, it only shows plug into itunes. when i do, the device is not recognized by windows or itunes. any ideas?

    im trying to update to newest ios version. but during the proccess, an unknown error accured, now the device wont do anything, just shows the plug into itunes screen. the device does not show in windows or itunes. the iphone wont do anything. i tried restarting, it shuts off and back on, but only shows plug into itunes thing. any ideas?

    From my experience, the only way you're gonna get a PC afflicted with this disease to work with a 5th gen nano is to roll back to an earlier version of iTunes.  Those affected have been exhausted by this ongoing issue.  To update or not to update?  And I always say never update unless you have to, and turn off all that auto update mess!
    I have two core2duo lappies running 32b vista.  My workflow dictates 32b fyi.  One is acer aspire running itunes v 11.1 (.0.126),  5th gen nano was originally formatted and works just fine on this machine to this day.  My other is the bigger badder lenovo thinkpad and the 5th gen will NOT mount using any version of itunes past 11.0 (.1.12)  Windows mounts it just fine.  itunes is not having it.  no shirt no shoes no service.
    I have both a 4th and 5th gen nano.  The 4th gen works great on both machines, I even successfully tested it with the latest version (11.1.5) before subsequent deletion on the thinkpad!  Weird huh?  I think my next experiment might be to restore my 5th gen w/ a Mac and theeeeen plug it into PC itunez.
    I'm at a loss on the thinkpad.  Scanned for intruders.  Cut the Lenovo bloat.  Executed system and reg maintenance.  Took down msconfig to a safe mode + itunes level to attempt to resolve possible sw conflicts but to no avail.  NO NO NO.  Every single dang port, every time on the thinkpad.  Has me feeling like others might get the same treatment by the next itunes update.  :|
    So in summary for me:
    5th gen nano and thinkpad are a NoGo on 11.1^  last working version for me = 11.0.1
    5th gen nano is working on an acer aspire 11.1.0  but no way in the world am I updating
    4th gen nano is kicking 5th gen nano's @zz so what would make me want to buy a new ipod?

  • Ipod not recognized by windows or itunes

    OK here's a humdinger: my ipod used to be recognized by my computer (meaning Windows XP), but then abruptly stopped in a catastrophic meltdown that completely wiped my ipod of everything -- didn't even show the menu. Fastforward, ipod is replaced. Windows will still not recognize it -- most of the time. The toolbar says USB device detected and hardware installed and ready to use, but the message that it's not recognized by Windows still appears. Now I said it was recognized sometimes. When it magically is (this is my only description for it because there is no apparent reason), and this is rare, usually after the computer has been turned off for awhile, the ipod will sync through about a fifth of my library then quit. The "disc cannot be found" message appears, and Windows stops recognizing and I'm back to square one. One would think that I now at least have a fifth of my songs on the ipod. Nope, just one for each time this has happened (being 2). Please do not respond with anything having to do with updating or uninstalling/reinstalling drivers, disabling USB 2.0, searching for E:\ drive, Windows Update, the whole appleipod.bat thing, updating itunes, or scanning for new hardware as I have tried these and a few other solutions. I'm just wondering if I'm completely, well, you know. Thanks for your time.

    OK here's a humdinger: my ipod used to be recognized by my computer (meaning Windows XP), but then abruptly stopped in a catastrophic meltdown that completely wiped my ipod of everything -- didn't even show the menu. Fastforward, ipod is replaced. Windows will still not recognize it -- most of the time. The toolbar says USB device detected and hardware installed and ready to use, but the message that it's not recognized by Windows still appears. Now I said it was recognized sometimes. When it magically is (this is my only description for it because there is no apparent reason), and this is rare, usually after the computer has been turned off for awhile, the ipod will sync through about a fifth of my library then quit. The "disc cannot be found" message appears, and Windows stops recognizing and I'm back to square one. One would think that I now at least have a fifth of my songs on the ipod. Nope, just one for each time this has happened (being 2). Please do not respond with anything having to do with updating or uninstalling/reinstalling drivers, disabling USB 2.0, searching for E:\ drive, Windows Update, the whole appleipod.bat thing, updating itunes, or scanning for new hardware as I have tried these and a few other solutions. I'm just wondering if I'm completely, well, you know. Thanks for your time.

  • I need help, my ipod touch is not recognized by windows as a harddisk

    i need help, my ipod touch is not recognized by windows like a memory card or a harddisk.
    i would like to transfer the files from pc to my ipod touch without useing itunes.
    as i see theres some people here that theires ipod touch are recongnzed as a digitl camra, mine is reconzied as nothing, some help plz.
    Message was edited by: B0Om

    B0Om wrote:
    ok but i still dont understed, only my itnes recongnize my ipod, when i go to " my cumputer, it dosent show up there, not even as a digital camra
    Your Touch is working correctly. Currently, without unsupported third party hacks, the Touch has NO disc mode. It will only show up in iTunes.
    how do i put programes and games in my ipod touch
    Right now, you don't. The SDK is scheduled to be released in Feburary. Then developers will be able to write programs that will be loadable.

  • My 4 generation I touch is not recognized by windows 7 on any computer

    My itouch is not recognized by windows 7 on any computer. Please help me. Thank you Gail

    Hi Gail,
    Have a look here...
    Device Not Recognised
    http://support.apple.com/kb/TS1538
    And Here
    iPhone, iPad, or iPod touch not appearing in iTunes

  • Iphone 4 not recognized by windows xp pro

    My new iphone4 is not recognized by windows xp pro. Please help.

    See http://support.apple.com/kb/TS1538.

  • Ipod not recognized by windows, itunes, and will not charge with pc.

    yesterday, when i went to sync some new music onto my 1gen nano, it did not work (duh). i plugged it in 3 times:
    -1st, it displayed the "do not connect screen" for one second, and itunes flashed the screen it shows when your ipod is connected, but then the ipod disconnected itself after that one second.
    -2nd, windows gave me a message saying the hardware could not be recognized.
    -3rd, nothing at all happened, as has been happening each time i try to plug it in since then.
    i've done the 5 R's .. and i've tried all the suggestions shown on posts that sound like mine, including these: Windows XP cannot detect an iPod.
    USB drivers are not installed properly or are out of date.
    iTunes 7 doesn't recognize the iPod.
    my ipod will charge when plugged into a wall charger, and it plays normally. also, my brother's ipod (2nd gen nano) is recognized by windows/itunes.

    Hello
    I have been having nearly the same problem as Crashcup for the past month. Differences being I am operating with Windows Vista and my iPod is a 160GB Classic. I have gone through all the steps in the troubleshooting documents to no result. I attach my iPod and it is not recognized by Windows, iTunes or even in Device Manager. Not even as an "Unknown Device".
    I know there is nothing wrong with the USB ports as two different external hard drives and a video game controller work perfectly fine through them. Same goes with the iPod itself; it continues to play and function normally, and is recognized by a charging device completely separate from my laptop. Just when attached to the computer there is no sign of it.
    I am very frustrated that there is no further instruction with regard to what to do with an iPod Classic (as referred to by Crashcup: "...it says to take a photo with an iPhone, or a screenshot with an iPod touch or iPad. WHAT ABOUT THE IPOD CLASSIC????)
    Any help would be much appreciated.l=

Maybe you are looking for

  • Lumia 520 voicemail

    Hi First let me say a am not very good with this type of phone but hope someone can help. When my phone is switch on and  the reception is satisfactory and I cannot for any reason answer a call the phone will go to voicemail and is fine. If the phone

  • Problem reading SIM card?

    I am trying to activate my Iphone but can't get it to connect to Itunes. All I get is an error message that the Iphone cannot be used with Itunes because the SIM card is not installed. When I press on the "i" on the activation screen I get the messag

  • Production Order Receipt Block before Usage Decision is Made

    Dear all, I have a requirement to block production order receipt through MIGO into any storage location before the usage decision has been made for that production order. This should be the rule for all non serial items, meaning that it should only a

  • HELP!!! MBA will not boot. It's in a constant "reboot loop!"

    Hi! I was having issues with my MBA and it's well known problem with getting a bit hot and shutting down the core etc. One post mentioned coolbook. Several peole gave it the thumbs up so I decided to give it a try. Installed it and was asked to resta

  • KM Windows Drive

    Hi, We are trying to create a new file system repository on our Portal (EP 7.0 SPS 12) server, which isUNIX based and the file system repository is Windows based. The reference document we are following is: http://help.sap.com/saphelp_nw2004s/helpdat