Open file need run as admin

Hello 
in my code there is simle open file .
in labview it works without any problem .
when i creat executable file it can't open file but when i run as admin it works fine .
here wht i have done :
1-change built property to run as admin (didn't work).
2- read/write registry data (didn't work).
change manifest .
this is my minifest :
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"><assemblyIdentity version="1.0.0.0" processorArchitecture="X86" name="NationalInstruments.Installer.MetaInstaller" type="win32"></assemblyIdentity><description>MetaI​nstaller</description><dependency><dependentAssemb​ly><assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="X86" publicKeyToken="6595b64144ccf1df" language="*"></assemblyIdentity></dependentAssembl​y></dependency><trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"><security​><requestedPrivileges><requestedExecutionLevel level="requireAdministrator" uiAccess="false"></requestedExecutionLevel></reque​stedPrivileges></security></trustInfo><compatibili​ty xmlns="urn:schemas-microsoft-com:compatibility.v1"​>
<application>
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"></supp​ortedOS>
</application>
</compatibility></assembly>
as you see it's 
<requestedExecutionLevel level="requireAdministrator"
but still the program doesn't ask run as admin .
what can i do ?
Best Regards
Solved!
Go to Solution.

thanks for reply 
"Where is the file at that you are trying to open?"
Drive C
Constant address "C:\PMsetting.bin"
" What kind of file?"
binary file 
"What type of access are you requesting (read, write, read-write)?"
read and write
" What error are you getting from the open file function?"
no  errore just doesn't work !
here is my vi 
this vi is called from main vi 
Attachments:
Initial_With_State_machine.vi ‏34 KB

Similar Messages

  • How to make Applescript open AI then open file then run ExtendScript then close?

    Here's the sample Applescript code I came up with using the scripting guide/reference for CS6 and also doing some online searches:
    tell application "Adobe Illustrator"
        activate
        delay 10
        set pfilepath to "/Users/username/Documents/Temp/someFile.ai"
        set pfile to POSIX file pfilepath
        open pfile as alias without options
        delay 10
        do javascript "#include '/Users/username/Documents/Temp/someScript.jsx'"
        delay 1
        quit
    end tell
    I just want to open the app (sample here for AI but also nice to do same for Photoshop), open a file, then run ExtendScript file against it, then close after processing. With this sample script, all that works is the app launches. No file opened, no script ran, app doesn't close at end. I see no errors pop up nor anything show up in command prompt.
    The sample ExtendScript just triggers an alert popup message for testing
    Also to note, the Applescript snippet is executed from Python but I believe where/how it's executed shouldn't matter (except maybe where the error messages might show up). Although in worse case, I'll debug/run through the AppleScript editor.
    Any tips on what's wrong here? Or does it look technically correct?

    No, I don't have specific documentation, but you can put together such for Python from bits & pieces here & there. And yes, I made it cross-platform to anticipate Adobe users on both Mac & PC, for which there currently are, though for what we're doing skews towards Windows for now.
    For the COM API, follow the VBScript reference and code samples. Just convert the method calls to Python COM. There will be slight syntax differences sometimes (e.g. add "()" to method call for VBScritp subroutines that don't need them, etc.). The scripting guide link below should have code samples for VBScript.
    http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/illustrator/sdk/CC2014/Illustrator% 20Scripting%20Reference%20-%20…
    http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/illustrator/sdk/CC2014/Illustrator% 20Scripting%20Guide.pdf
    For example of Python COM, you can search online, or look at AutoItDriverServer/server.py at master · daluu/AutoItDriverServer · GitHub, which may be bit much/complex for you? For Python COM, you either need ActivePython or regular Python plus Python for Windows Extensions (e.g. pywin32).
    For Applescript and Python, this post might be useful: osx - Calling AppleScript from Python without using osascript or appscript? - Stack Overflow
    for the rest of the the cross-platform support, it's just generic python to parse command line arguments, etc. You may want to query what platform the script is running under using some standard Python modules (os, system). An example can be found in AutoPyDriverServer/server.py at master · daluu/AutoPyDriverServer · GitHub
    Hope that helps.

  • When trying to open .pdf files i get a gray screen with message"adobe reader can"t open file.If running please exit and try again  15:3"..any ideas

    Cannot open >pdf files..Keep getting gray screen with following message  "error trying to open file..if adobe reader is running exit and try again 15.3"

    I have the same problem also but solved with the solution from http://www.brain-cluster.com/blog/orange/2011/03/06/there-problem-adobe-acrobatreader-if-it-running-please-exit-and-try-again

  • [Solved] Problem getting Batch Files to run as Admin in Win 8.1

    I'm trying to control certain Services with batch files to have them stop automatically at start.  However, with certain services, stopping requires run as admin.  My user account has admin privileges.
    For example, a batch file with this command will stop with a command prompt requiring Y/N to confirm the stop.
    NET STOP "Audiosrv"
    I can create a shortcut and set it to run as admin and it will stop the service without issue when it's clicked.  However, if I put the shortcut in the Windows startup folder, so the script runs automatically at boot it seems to ignore the shortcuts.
    I've tried the RunAs command below in a batch file, but it doesn't stop the service.
    runas /user:jaguar\Admin NET STOP "Audiosrv"
    Thanks for your help.

    Hello Peter, that works great.   I found I can add multiple arguments by separating them with a semi colon and I could hide the powershell window with the command at the end.
    My last question is if there's an additional command that will hide or minimize the command line window when the script runs?
    powershell.exe "Start-Process powershell -ArgumentList 'stop-service audiosrv; stop-service AudioEndpointBuilder; stop-service MMCSS' -Verb RunAs" -windowstyle hidden

  • How open files respectively in a directory ?

    HELLO
    I got this code from this forum to open files and run a macro then close them in a directory . But this code doesn`t execute as I need. I want open files and run macro and close themو respectively . ٍٍEven I numbered files in a sequece but it doesn`t work.
    Can anyone help in this issue !? 
    Sub ProcessFolder()
    ' Path of the workbooks; must end in \
    Const strFolder = "F:\NEW DATA with 4 sheets - Copy\"
    Dim strFile As String
    Dim wbk As Workbook
    ' Don't update the screen for efficiency
    Application.ScreenUpdating = False
    ' Get first filename
    strFile = Dir(strFolder & "*.xls*")
    ' Loop through the files
    Do While strFile <> ""
    ' Open the workbook
    Set wbk = Workbooks.Open(strFolder & strFile)
    ' Do something with the workbook
    Call Macro1
    ' Close the workbook - use False if you don't want to save it
    wbk.Close SaveChanges:=False
    ' Get the next filename
    strFile = Dir
    Loop
    ' Update the screen again
    Application.ScreenUpdating = True
    End Sub
    THANKs
    ABBAS

    'Don't forget to end the path With the \ character:
    Private Const csFolder = "C:\Temp\1\"
    'Private Const sFolder = "F:\NEW DATA with 4 sheets - Copy\"
    Private Sub pProcessFolder()
    Dim sDir As String
    Dim avFiles() As Variant
    Dim vFile As Variant
    Dim lFile As Long
    Dim wb As Excel.Workbook
    sDir = Dir(csFolder & "*")
    Do While sDir <> ""
    lFile = lFile + 1
    ReDim Preserve avFiles(1 To lFile)
    avFiles(lFile) = csFolder & sDir
    sDir = Dir
    Loop
    pQuickSort avFiles
    Application.ScreenUpdating = False
    For Each vFile In avFiles
    Set wb = Workbooks.Open(vFile)
    Debug.Print wb.Name
    Call Macro1
    wb.Close SaveChanges:=False
    Next vFile
    Application.ScreenUpdating = True
    End Sub
    Sub Macro1()
    End Sub
    Private Function pQuickSort(vSort As Variant, _
    Optional vLow As Variant, _
    Optional vHigh As Variant) As Variant
    'Ordena um vetor utilizando um algoritmo do tipo Quick Sort.
    Dim vPivot As Variant
    Dim vSwitch As Variant
    Dim lLow As Long
    Dim lHigh As Long
    If IsMissing(vLow) Then vLow = LBound(vSort)
    If IsMissing(vHigh) Then vHigh = UBound(vSort)
    lLow = vLow
    lHigh = vHigh
    vPivot = pTransform(vSort((vLow + vHigh) \ 2))
    Do While lLow <= lHigh
    Do While pTransform(vSort(lLow)) < vPivot And lLow < vHigh
    lLow = lLow + 1
    Loop
    Do While vPivot < pTransform(vSort(lHigh)) And lHigh > vLow
    lHigh = lHigh - 1
    Loop
    If lLow <= lHigh Then
    vSwitch = vSort(lLow)
    vSort(lLow) = vSort(lHigh)
    vSort(lHigh) = vSwitch
    lLow = lLow + 1
    lHigh = lHigh - 1
    End If
    Loop
    If vLow < lHigh Then pQuickSort vSort, vLow, lHigh
    If lLow < vHigh Then pQuickSort vSort, lLow, vHigh
    End Function
    Private Function pTransform(vItem As Variant) As Long
    Dim aux As String
    aux = vItem
    aux = Mid(aux, Len(csFolder) + 1)
    aux = Split(aux, "-")(0)
    pTransform = aux
    End Function
    Felipe Costa Gualberto - http://www.ambienteoffice.com.br

  • Open file alarms severely broken under Mavericks

    Hi.
    So when I updated my systems to Mavericks, all of the alarms/alerts that open file to run an automator or Applescript applet had to be reset.
    Even resetting was tedious, as each of the applets first had to be run from the finder.  Then reset to the event(s) in Calendar..... but onle 2 can be set, then quit Calendar, then go back into calendar and set the next two......
    Until Mavericks, I have depended on Canlendar to run everything.Calendar, invoking applets is like the best thing since sliced bread for our uses!  On some days I have > 20 event alerts set.
    The problem is that even after the tedious process of resetting all the alerts, once set, any adjustment to one will cause it to run at that instant.  For example, I just went in to change a timer that was set to stop a particular event in another (scriptable) application at a particular time.  I chose to just delete the timer because I knew that changing it would cause it to run right then.  So I deleted it. Just deleting the alert caused it to run. right then.
    Note to Apple: PLEASE FIX THE PROBLEM WITH CALENDAR AND AUTOMATOR / APPLESCRIPT applets!!!!
    Note to anybody else who has been likewise devastatingly affected, IS THERE ANOTHER 3rd party app available that will do what we have been dependent on Calendar to do?
    This is awful. What a disaster.
    edited to add system using is OS 10.9.1
    Message was edited by: croixmom99

    Wow, ahahah.
    Found the bug source. A big OSX security flaw in my opinion. As the file was on the desktop, the path was Users/Me/Desktop/... However, I had a network connection to my pc, and the link was to my user account, Users/me/... So OSX was not trying to open its own /Users/ path but my PC folder... Somebody could fool the system, by creating a volume called /Users/... with some fake duplicate files, and someone could try to open something on his drive, but in fact it would load the evil Users volume.
    I don't understand how this could be possible. I never understood how bad the OSX network volumes system was that bad, but never tought it would be so crappy.

  • Taskbar & Start Menu Bug: App Shortcuts set to Run as Admin don't open pinned/recent files in RaA

    This is pretty self-explanatory.
    Run in Admin does not kick in when launching a file via a Taskbar's pinned app icon, even when the pinned app has been set to 'Run in Admin' mode (under Properties -> Advanced).
    The same thing happens in the Start Menu -- the app can be set (Properties -> Advanced) to Run in Admin mode, and the file does not launch this way.
    Why is this a problem?  Because if one is supposed to use accounts like MS asks, then running as a standard user after having a file created in an admin account, that user cannot alter the doc in any way -- no saves work.  At least this is true for files not on the C partition.  The only way W7 permits saves is to run an app in Admin mode.
    (I've run into this countless times in the span of a few days with Notepad & PSPad.)
    If the W7 team wants to insist that docs won't automatically run in Admin mode under these conditions (which they should!!!!!!), then at least give users a right-click context menu option to Run as Admin from the recent/pinned items list.  Currently there is no such context menu option.
    Thereby, all recent items / pinned items are rendered a useless feature.....
    Still loving this OS.
    a.k.a.

    Sorry but this is not an answer. The answer to the question is that you cannot run pinned items with the same properties as the pinned program.
    I'll use Visual Studio as an option here but I'm assuming this is true for any program.
    Yes, right click on the pinned program and choose the Advanced settings and you can have it  run as administrator by default. For SharePoint development for example this is great (and required). You have to run Visual Studio as admin on the local box
    in order to deploy your solutions from within Visual Studio.
    Even if you pin the program to the start menu or taskbar after you've set it to run as administrator it works.
    What doesn't work are pinned files. Visual Studio will pin the last 5 or so solutions you've opened. This is handy if you're flipping back and forth between solutions and saves you an extra step when launching the program in that you can select it from the
    context menu that appears attached to the taskbar icon.
    However regardless of the setting of the pinned program, files launch in regular user mode and do not respect the "run as administrator" setting on the pinned program. I consider this a bug as it should respect the setting. And as nesmond mentioned, it makes
    pinning solutions in Visual Studio useless if you need to run the program as administrator. So the best scenario you have is to pin it and set it to run as administrator but then manually open the file after launching. There is no way to have the shortcuts
    that are pinned to run as administrator.

  • Need help. I am running a 27 in imac with 16 gigs of ram. Photoshop runs really fast, except when opening files. It takes 5-10 minutes to open even a small file of 1 meg. I cleaned and validated all the fonts and removed all questionable fonts. Reset pref

    Need help. I am running a 27 in imac with 16 gigs of ram. Photoshop runs really fast, except when opening files. It takes 5-10 minutes to open even a small file of 1 meg. I cleaned and validated all the fonts and removed all questionable fonts. Reset preferences and still have problem. Slow to open and in force quit "Photoshop not responding" At this point should I uninstall and start over.

    What are the performance Preferences?

  • I am unable to open PDF files or run adobe flash when its needed I have downloaded it several times and tried updating it.

    I am unable to open PDF files or run adobe flash when its needed I have downloaded it several times and tried updating it. NEED HELP

    Adobe Acrobat NPAPI Plug-in, Version 11.0.04
    Adobe® Acrobat® Plug-in for Web Browsers, Version 11.0.04 — from file “AdobePDFViewerNPAPI.plugin”.
    application/pdf
    Acrobat Portable Document Format
    pdf
    application/vnd.adobe.pdf
    Acrobat Portable Document Format (Interim)
    pdf
    application/vnd.adobe.pdfxml
    Acrobat XML Portable Document Format
    pdfxml
    application/vnd.adobe.x-mars
    Acrobat XML Portable Document Format (Interim)
    mars
    application/vnd.adobe.xdp+xml
    XML Data Package
    xdp
    application/vnd.adobe.xfd+xml
    FormFlow99 Data File
    xfd
    application/vnd.adobe.xfdf
    Acrobat Forms Data Format in XML
    xfdf
    application/vnd.fdf
    Acrobat Forms Data Format
    fdf
    doubleTwist Web Plugin
    doubleTwist Web Plugin — from file “doubleTwistWebPlugin.bundle”.
    application/x-vnd-doubletwist
    doubleTwist Web Plugin
    Java Applet Plug-in
    Displays Java applet content, or a placeholder if Java is not installed. — from file “JavaAppletPlugin.plugin”.
    application/x-java-applet
    Basic Java Applets
    javaapplet
    application/x-java-applet;deploy=10.25.2
    Java applet
    application/x-java-applet;javafx=2.2.25
    Java applet
    application/x-java-applet;jpi-version=1.7.0_25
    Java applet
    application/x-java-applet;version=1.1
    Java applet
    application/x-java-applet;version=1.1.1
    Java applet
    application/x-java-applet;version=1.1.2
    Java applet
    application/x-java-applet;version=1.1.3
    Java applet
    application/x-java-applet;version=1.2
    Java applet
    application/x-java-applet;version=1.2.1
    Java applet
    application/x-java-applet;version=1.2.2
    Java applet
    application/x-java-applet;version=1.3
    Java applet
    application/x-java-applet;version=1.3.1
    Java applet
    application/x-java-applet;version=1.4
    Java applet
    application/x-java-applet;version=1.4.1
    Java applet
    application/x-java-applet;version=1.4.2
    Java applet
    application/x-java-applet;version=1.5
    Java applet
    application/x-java-applet;version=1.6
    Java applet
    application/x-java-applet;version=1.7
    Java applet
    application/x-java-vm
    Java applet
    application/x-java-vm-npruntime
    Java applet
    QuickTime Plug-in 7.7.1
    The QuickTime Plugin allows you to view a wide variety of multimedia content in web pages. For more information, visit the QuickTime Web site. — from file “QuickTime Plugin.plugin”.
    application/sdp
    SDP stream descriptor
    sdp
    application/x-mpeg
    AMC media
    amc
    application/x-rtsp
    RTSP stream descriptor
    rtsp,rts
    application/x-sdp
    SDP stream descriptor
    sdp
    audio/3gpp
    3GPP media
    3gp,3gpp
    audio/3gpp2
    3GPP2 media
    3g2,3gp2
    audio/aac
    AAC audio
    aac,adts
    audio/ac3
    AC3 audio
    ac3
    audio/aiff
    AIFF audio
    aiff,aif,aifc,cdda
    audio/amr
    AMR audio
    amr
    audio/basic
    uLaw/AU audio
    au,snd,ulw
    audio/mid
    MIDI
    mid,midi,smf,kar
    audio/midi
    MIDI
    mid,midi,smf,kar
    audio/mp3
    MP3 audio
    mp3,swa
    audio/mp4
    MPEG-4 media
    mp4
    audio/mpeg
    MPEG audio
    mpeg,mpg,m1s,m1a,mp2,mpm,mpa,m2a,mp3,swa
    audio/mpeg3
    MP3 audio
    mp3,swa
    audio/vnd.qcelp
    QUALCOMM PureVoice audio
    qcp,qcp
    audio/wav
    WAVE audio
    wav,bwf
    audio/x-aac
    AAC audio
    aac,adts
    audio/x-ac3
    AC3 audio
    ac3
    audio/x-aiff
    AIFF audio
    aiff,aif,aifc,cdda
    audio/x-caf
    CAF audio
    caf
    audio/x-gsm
    GSM audio
    gsm
    audio/x-m4a
    AAC audio
    m4a
    audio/x-m4b
    AAC audio book
    m4b
    audio/x-m4p
    AAC audio (protected)
    m4p
    audio/x-midi
    MIDI
    mid,midi,smf,kar
    audio/x-mp3
    MP3 audio
    mp3,swa
    audio/x-mpeg
    MPEG audio
    mpeg,mpg,m1s,m1a,mp2,mpm,mpa,m2a,mp3,swa
    audio/x-mpeg3
    MP3 audio
    mp3,swa
    audio/x-wav
    WAVE audio
    wav,bwf
    image/jp2
    JPEG2000 image
    jp2
    image/jpeg2000
    JPEG2000 image
    jp2
    image/jpeg2000-image
    JPEG2000 image
    jp2
    image/pict
    PICT image
    pict,pic,pct
    image/png
    PNG image
    png
    image/tiff
    TIFF image
    tif,tiff
    image/x-bmp
    BMP image
    bmp,dib
    image/x-jpeg2000-image
    JPEG2000 image
    jp2
    image/x-macpaint
    MacPaint image
    pntg,pnt,mac
    image/x-pict
    PICT image
    pict,pic,pct
    image/x-png
    PNG image
    png
    image/x-quicktime
    QuickTime image
    qtif,qti
    image/x-sgi
    SGI image
    sgi,rgb
    image/x-targa
    TGA image
    targa,tga
    image/x-tiff
    TIFF image
    tif,tiff
    video/3gpp
    3GPP media
    3gp,3gpp
    video/3gpp2
    3GPP2 media
    3g2,3gp2
    video/avi
    Video For Windows (AVI)
    avi,vfw
    video/flc
    AutoDesk Animator (FLC)
    flc,fli,cel
    video/mp4
    MPEG-4 media
    mp4
    video/mpeg
    MPEG media
    mpeg,mpg,m1s,m1v,m1a,m75,m15,mp2,mpm,mpv,mpa
    video/msvideo
    Video For Windows (AVI)
    avi,vfw
    video/quicktime
    QuickTime Movie
    mov,qt,mqv
    video/sd-video
    SD video
    sdv
    video/x-m4v
    Video (protected)
    m4v
    video/x-mpeg
    MPEG media
    mpeg,mpg,m1s,m1v,m1a,m75,m15,mp2,mpm,mpv,mpa
    video/x-msvideo
    Video For Windows (AVI)
    avi,vfw
    SharePoint Browser Plug-in
    Microsoft Office for Mac SharePoint Browser Plug-in — from file “SharePointBrowserPlugin.plugin”.
    application/x-sharepoint
    Microsoft Office for Mac SharePoint Browser Plug-in
    Shockwave Flash
    Shockwave Flash 11.9 r900 — from file “Flash Player.plugin”.
    application/futuresplash
    FutureSplash Player
    spl
    application/x-shockwave-flash
    Shockwave Flash
    swf
    Silverlight Plug-In
    5.1.20913.0 — from file “Silverlight.plugin”.
    application/x-silverlight

  • "Unable to open file" error when running system report in HFM

    I've installed and configured EPM System 11.1.1.2 for HFM and I've created sample application COMMA.
    Next, I'm trying to run sample Journal or ICP Report (for example, sample report named "Journals"). But system gives me an error like this:
    +Unable to open file C:\Hyperion\products\FinancialManagement\Web\HFM\FileTransfer\{C9841217-2F8E-4D67-80EE-C23D2720EF87}.FTR\JOURReport7_821239018.+
    Error Reference Number: {1998AD6B-2CAA-4C04-B4BB-83909C175257};User Name: admin@Native Directory
    Num: 0x80040237;Type: 1;DTime: 09.06.2009 14:30:53;Svr: TESTESO1;File: HFMActionsExecution.cpp;Line: 2236;Ver: 11.1.1.2.0.2207;ExErr: It is an error to mix objects from different versions of MSXML.;
    Num: 0x80040237;Type: 0;DTime: 09.06.2009 14:30:53;Svr: TESTESO1;File: HFMActions.cpp;Line: 72;Ver: 11.1.1.2.0.2207;
    Num: 0x80040237;Type: 0;DTime: 09.06.2009 14:30:53;Svr: TESTESO1;File: HFMCESAction.cpp;Line: 28;Ver: 11.1.1.2.0.2207;
    Num: 0x80040237;Type: 0;DTime: 09.06.2009 14:30:53;Svr: TESTESO1;File: Actions.cpp;Line: 291;Ver: 11.1.1.2.0.2207;
    How can I fix this error?
    Thanks in advance!
    Edited by: Alex Lasker on 09.06.2009 9:49

    For the benefit of anyone who experiences this error in IIS7, the IUSR_xxx user no longer exists. You must grant permissions to "IIS APPPOOL\hfmAppPool" instead (select the local machine as the "Location" if Windows Explorer complains).
    Similarly, for the benefit of those who get the error in HFM 11.1.2.1, security must be applied to the Oracle\Middleware\user_projects\product\FinancialManagement\Web folder.

  • I need to open files in a folder within a photoshop action

    I am writing an action (to be triggered by automator) to take three photos from a tethered camera and open, size, and crop them, and place them in specific locations on a template image to create two photo-booth strips side by side on a 4x6 print.  It works perfectly, but when I write the "open" command into the action, it referenced the files by name.  I need to find a way to have my action open the three files in a folder (the only three that will be there thanks to my automator action), but not reference them by name.  Is there any way of opening images in an action without referencing them by name?  Maybe some sort of open images in a folder type of thing?  Any ideas are very much appreciated.
    ---Dan

    I have played with the >>Toggle dialogue on/off<< field and manually opened the files from their folder, but the action has the file's location written into it.  I need it to open all files in a folder.  As part of my Automator action, I am moving my photos (taken in batches of 3) into a workflow system of folders so the photos from the camera save to a "from camera" folder, and then move to a "for photoshop" folder, and those are the images that open into the ps action and get put into the template.  The action saves the composite image to an archive folder, and deletes the image layers, and then the Automator action moves the originals to another archive folder.  There shouldn't be issues as long as the actions keep running and I can figure out how to open files form a folder without referencing the specific images in the folder.  Also please keep in mind that I am writing this as an action witihn Photoshop CS3, so basically clicking record, and letting the computer write the "code".  Did that help?

  • Itunes wont open/ file icon on ipod- NEED HELP ASAP!

    My itunes will not open at all on my comp. I downloaded the newest version, then nothing would open. I removed all versions and attempted to re-install again. Now, my ipod will not turn on. There is a file icon with an exclamation point. I dont know waht to do and I am leaving for a long trip in a few days and need my ipod! any help asap would be greatly appreciated!
    dell   Windows XP  

    OK-
    First, let's get your iTunes open.
    Click on Start, Click on Run
    Type msconfig
    Click on the startup tab (last one on the right)
    Click on "disable all"
    Click apply, then click close
    Go ahead and restart your computer when prompted to do so
    When your computer starts back up, you should be able to open up your iTunes. When it opens, close it again. Now that we know it is able to open, it needs to be closed in order to resolve the file folder with exclamation point error.
    Now, let's get that file folder issue resolved.
    Click start, click all programs, click iPod, click iPod updater, click iPod updater (again)
    Click OK when you see the dialogue that tells you what the application's capabilities are
    Connect your iPod when it tells you to
    Click on the "restore" button when it becomes available
    IF the restore button does not become available, and if the iPod updater fails to recognize the iPod, disconnect it. Reset the iPod by (making sure the hold switch is off) pressing the menu button and the select button at the same time for about 10 seconds, until you get the Apple logo. As soon as you get the Apple logo, hold down the select button and the play/pause button together until you get a check mark on the screen. You may have to try this several times to get it to work... and sometimes it helps to lay the iPod down on a hard flat surface, like a table or your computer desk.
    Once you get the iPod into disk mode, you can go ahead and try to restore it again. (Start > All Programs > iPod > iPod Updater > iPod Udpater) Click OK, Connect your iPod when it asks you to do so, and then click the restore button when it becomes available.
    If you're still having issues, try reading through some of the following articles:
    http://docs.info.apple.com/article.html?artnum=93736
    http://docs.info.apple.com/article.html?artnum=61003
    Keep us posted
    CG

  • Need to execute bat file by GPO with admin rights

    Hi all
    I created a specific bat file that run regini.exe with specific parameters to set a specific permission in a specific registry key.
    I can execute this bat file from GPO but I need that this bat runs with domain admins rights otherwise script not set the permission in user's registry key.
    Have you any ideas?
    Thanks
    Chris

    > Yes I tested this solution but it's not possible set permission to the
    > key :-(
    Which key are we talking about?
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • CS6 DW hanging when opening files - Windows 8.1 running MS Defender

    When opening files in CS6 DW it sometimes hangs for up to 4 minutes before opening the files.
    Also, CS6 DW and Fireworks crash frequently on my PC.
    I'm running Windows 8.1, MS Defender and my PC is a Pentium i7 with 8GB of RAM
    Any ideas what I can do to stop these things happening? It's really starting to impact on the productivity of my day.

    You seem to be implying that when you switch off MS Defender, it works?
    If not, we'll need a little more info.
    Does the hang happen with all files in all sites, or just certain files?
    If it happens with just certain files, could you please share the code to one of those files? A link to an online page would be best, but pasting the code into the forum can also help, just don't use email to send the code to the forum, that won't work.
    Have you tried any of the standard troubleshooting steps as of yet (Deleting Program Cache, Restoring Preferences, Cleaner Tool Reinstall)?

  • System Check error : Actual open files limit:7000, needed 8000 nodes:

    Hi,
    System check showing up error 'Actual open files limit:7000, needed 8000 nodes:' in our BIA system.
    SAP BIA Admin guide suggested open files limit should not be less than 8000. I verified at OS level  
    ulimit for open files (-n) is displayed as '8000' which is good.
    Please suggest me how to fix this error. What if we increase ulimit value for open files at OS level?
    Thanks in advance
    Regards,
    Srinivas.

    Hello Srinivas,
    please see SAP Note <a href="http://service.sap.com/sap/support/notes/1273695">1273695</a>.
    Regards,
    Marc
    SAP Customer Solution Adoption (CSA)

Maybe you are looking for

  • How to UPGRADE for FREE from Snow Leopard yo Lion

    Bought a new iMac on 18/11/2011. Came with Operating System 10.6.8 Have now found out that I should have had the Lion OS installed by updating for free. Have tried for days now but no luck, I still have to pay for upgrading. Does anybody out there ha

  • Best external connection

    i have a massive plasma and would love to have my new macbook use it as an additional screen vis the mini dvi port but whats bes dvi to vga or dvi to dvi?? i have been told vga is best but surely digital is better for flat screens? if i go dvi to dvi

  • How to use custom defined tags in uix in jdevloper 10g production

    can any one give me sample application for how to work with custom defined tags in uix with jedevloper 10g production thanks Venkat

  • HT201302 my videos not showing up on pc after import

    my videos not showing up on my pc after i import them, only my pics. i have windows vista. my window photo gallery shows all my photos but no videos. help

  • Spry sortOnLoad today's date

    Hello, I have the following XML sheet: <Films> film id="1">     <date>25 et 26 août 2009 </date>     <titre>THE WRESTLER </titre> <image>i/wrestler.jpg</image>     <details><![CDATA[<a href="The Wrestler.doc">DOCUMENTATION</a>]]></details> </film> <f