Remote data retrive with tar command

Hi all,
I want to extract data from the tape drive attached to remote hosts, but while extracting the data I get the error something like this:
read : Not enough space
0+0 record in
0+0 record out
The command to extract is
# rsh remotehost dd if=/dev/rmt/0 | tar xvf -
where remotehost is the remote hostname where tape drive is attached.
Had anyone faced the problem like this. I will be thankful if anyone assist me.
Best Regards,
Bikash

"not enough space" means that the space allocated by the process reading the tape was not sufficient to hold the data coming from tape. This basically means that the default block size chosen was too small. You need to increase the block size on the reader. Since you're reading with 'dd', you do it there.
dd if=/dev/rmt/0 ibs=32k
or 64k, or 128k, or whatever... Just keep making it bigger until you don't get that error. A size of 64k or 128k is very common. Significantly larger is uncommon.
Darren

Similar Messages

  • Data View with customized command buttons

    I would like to show data from a table in browse window and place customized command buttons such as search key, filter, etc.
    Please advise.

    What you describe is a form. And you don't want a browse window, but a grid inside this form. The only thing you set in a grid in the first degree is the recordsource, and then it will display the same data view as a browse.
    The rest of your idea can be placed into the same form as controls, textboxes, buttons, etc. and you might make use of the idea sketched by Alaa Mukhtar.
    In the second degree, right click on controls you put on a form while designing it with the form designer, and you can get a help via a builder you get offered in the context menu.
    Bye, Olaf.
    Olaf Doschke - TMN Systemberatung GmbH
    http://www.tmn-systemberatung.de

  • Remote Apps launch with a command window

    All RemoteApps launch with the program and a black DOS window.  How can I disable this DOS window from launching.  I have searched and found no solution.  Even using a VB script does not help.

     
    HI
    I strongly believe this could be an issues with some other software or any virus may be trying to execute when app is launched.
    This is never a function of remote APP. You need to find out from where and how the command window is launched.
    Login to server directly and try to launch the same application and find what is happening and form where it’s getting CMD.
    Even you can use some register and application monitoring tools and find what functions are called, if you feel fixing the issues is only options rather than reinstalling the server.

  • No data received with wget command on Solaris 10

    Dear All,
    When I use the 'ping' command is can ping to the server normally but when I try to use the 'wget' command to retrieve data from Server is cannot get anything.
    I got the error message as bellow
    ./wget no-check-certificate private-key=/cert/data.pem --certificate=/cert/data.crt "https://server1.com.kh/data/?action=datano;datano=aaaa" -O-
    --14:17:17-- https://server1.com.kh/data/?action=datano;datano=aaaa
    => `-'
    Resolving server1.com.kh... 172.16.20.46
    Connecting to server1.com.kh|172.16.20.46|:443... connected.
    WARNING: Certificate verification error for server1.com.kh: self signed certificate in certificate chain
    HTTP request sent, awaiting response... No data received.
    Retrying.
    Please kindly give any idea for this.
    Thanks and regards,
    Heng

    What do you actually want to do?
    1. connect to a https url and ignore whether the returned certificate is valid or not?
    ./wget --no-check-certificate "https://server1.com.kh/data/?action=datano;datano=aaaa"
    2. connect to https url and only connect if the returned certificate is valid and/or in your truststore?
    ./wget --ca-directory=/cert "https://server1.com.kh/data/?action=datano;datano=aaaa"
    3. connect to https url and provide your own client certificate to authenticate to server?
    ./wget private-key=/cert/data.pem certificate=/cert/data.crt "https://server1.com.kh/data/?action=datano;datano=aaaa"
    4. something else...?

  • How to export data with column headers in sql server 2008 with bcp command?

    Hi all,
    I want know "how to export data with column headers in sql server 2008 with bcp command", I know how to import data with import and export wizard. when i
    am trying to import data with bcp command data has been copied but column names are not came.
    I am using the below query:-
    EXEC master..xp_cmdshell
    'BCP "SELECT  * FROM   [tempdb].[dbo].[VBAS_ErrorLog] " QUERYOUT "D:\Temp\SQLServer.log" -c -t , -T -S SERVER-A'
    Thanks,
    SAAD.

    Hi All,
    I have done as per your suggestion but here i have face the below problem, in print statment it give correct query, in EXEC ( EXEC master..xp_cmdshell @BCPCMD) it was displayed error message like below
    DECLARE @BCPCMD
    nvarchar(4000)
    DECLARE @BCPCMD1
    nvarchar(4000)
    DECLARE @BCPCMD2
    nvarchar(4000)
    DECLARE @SQLEXPRESS
    varchar(50)
    DECLARE @filepath
    nvarchar(150),@SQLServer
    varchar(50)
    SET @filepath
    = N'"D:\Temp\LDH_SQLErrorlog_'+CAST(YEAR(GETDATE())
    as varchar(4))
    +RIGHT('00'+CAST(MONTH(GETDATE())
    as varchar(2)),2)
    +RIGHT('00'+CAST(DAY(GETDATE())
    as varchar(2)),2)+'.log" '
    Set @SQLServer
    =(SELECT
    @@SERVERNAME)
    SELECT @BCPCMD1
    = '''BCP "SELECT 
    * FROM   [tempdb].[dbo].[wErrorLog] " QUERYOUT '
    SELECT @BCPCMD2
    = '-c -t , -T -S '
    + @SQLServer + 
    SET @BCPCMD
    = @BCPCMD1+ @filepath 
    + @BCPCMD2
    Print @BCPCMD
    -- Print out below
    'BCP "SELECT 
    * FROM   [tempdb].[dbo].[wErrorLog] " QUERYOUT "D:\Temp\LDH_SQLErrorlog_20130313.log" -c -t , -T -S servername'
    EXEC
    master..xp_cmdshell
    @BCPCMD
      ''BCP' is not recognized as an internal or external command,
    operable program or batch file.
    NULL
    if i copy the print ourt put like below and excecute the CMD it was working fine, could you please suggest me what is the problem in above query.
    EXEC
    master..xp_cmdshell
    'BCP "SELECT  * FROM  
    [tempdb].[dbo].[wErrorLog] " QUERYOUT "D:\Temp\LDH_SQLErrorlog_20130313.log" -c -t , -T -S servername '
    Thanks, SAAD.

  • Report with two Command is empty if one of the two commands returns no data

    Hi all,
    I have a report with two Commands not linked together.
    If ONLY one of the two Commands returns no data, the full report is empty (although the other Command returns data).
    I'm using Crystal Report 2008 and the CRJ 12.2.205
    Have an idea?

    Hi Ted,
    how can I solve the problem, please? It is important.
    If I can help yourself, the problem is appeared in many reports since I updated the library (the old library version 11.8.4.1094 works fine with all). I'm waiting for your answer, please.
    Thank you very much.

  • How can you run a command with elevated rights on a remote server with invoke-command ?

    I am trying to run a script on a remote server with invoke-command.  The script is starting and is running fine, but the problem is that it should be running with elevated rights on the remote server.  On the server where I start the invoke-command, my account has the necessary rights.
    The server were I launch the invoke-command is a W2K8 R2.  The remote box is a W2K3 with powershell v2.0 installed.
    When I launch the script on the remote-box from the command line, I don't get the access denied's.
    Is there a way to do this ?
    Thanks in advance

    The script that I want to run is to install the windows updates.  I get an access denied on the download of the updates.
    When I execute the script on an W2K8 box, (not remotely) and I run it with non-elevated rights, I get the same error.
    The script is running fine when it is launched on W2K3 box locally with a domain account that has local admin rights, or on a W2K8 R2 server with a domain account that has local admin rights, but with elevated rights.
    Thanks in advance for your help.
    #=== start script ====
    param($installOption="TESTINSTALL",$rebootOption="NOREBOOT")
    Function Show-Help
    Write-Host ""
    Write-Host "SCRIPT: $scriptName <installOption> <RebootOption>"
    Write-Host ""
    Write-Host "DESCRIPTION: Installatie van WSUS updates op de lokale server"
    Write-Host ""
    Write-Host "PARAMETERS"
    Write-Host " -installOption <[INSTALL|TESTINSTALL]>"
    Write-Host " -rebootOption <[REBOOT|NOREBOOT|REBOOT_IF_UPDATED]>"
    Write-Host ""
    Write-Host "EXAMPLE:"
    Write-Host "$ScriptName -installOption INSTALL -rebootOption REBOOT_IF_UPDATED"
    Write-Host "$ScriptNAme INSTALL NOREBOOT"
    Write-Host ""
    Write-Host "Indien beide parameter weggelaten worden zijn de defaultwaarden :"
    Write-Host " installOption=TESTINSTALL "
    Write-Host " RebootOption=NOREBOOT"
    Write-Host ""
    Exit
    #Include alle globale variablen
    $CEIF_WIN_PATH = (get-content env:CEIF_WIN_PATH)
    $includeFile=$CEIF_WIN_PATH + "\Scripts\include_win.ps1"
    . $includeFile
    #initialiseer error count
    $errcnt=0
    $scriptName=$MyInvocation.MyCommand.Name
    #argumenten controleren
    $arrInstallOption= "TESTINSTALL", "INSTALL" # Mandatory variable with predefined values
    If (!($arrInstallOption –contains $installOption)){ Show-Help }
    $arrRebootOption = "REBOOT", "NOREBOOT","REBOOT_IF_UPDATED" # Mandatory variable with predefined values
    If (!($arrRebootOption –contains $rebootOption)){ Show-Help }
    #Logfile opbouwen
    $logfile = get-logfileName($MyInvocation.MyCommand.Name)
    Log-scriptStart $MyInvocation.MyCommand.Name $logfile
    function Get-WIAStatusValue($value)
    switch -exact ($value)
    0 {"NotStarted"}
    1 {"InProgress"}
    2 {"Succeeded"}
    3 {"SucceededWithErrors"}
    4 {"Failed"}
    5 {"Aborted"}
    function boot-server()
    if ($installOption -eq "TESTINSTALL")
    logger "TESTINSTALL : - Reboot local Server" $logfile
    else
    logger " - Reboot local Server" $logfile
    $thisServer = gwmi win32_operatingsystem
    $thisServer.psbase.Scope.Options.EnablePrivileges = $true
    $thisServer.Reboot()
    $logmsg="Install option = " + $installOption + ", RebootOption = $rebootOption"
    logger "$logmsg" $logfile
    logger "" $logfile
    logger " - Creating WU COM object" $logfile
    $UpdateSession = New-Object -ComObject Microsoft.Update.Session
    $UpdateSearcher = $UpdateSession.CreateUpdateSearcher()
    logger " - Searching for Updates" $logfile
    $SearchResult = $UpdateSearcher.Search("IsAssigned=1 and IsHidden=0 and IsInstalled=0")
    logger " - Found [$($SearchResult.Updates.count)] Updates to Download and install" $logfile
    $Updates=$($SearchResult.Updates.count)
    logger "" $logfile
    foreach($Update in $SearchResult.Updates)
    if ($Update.EulaAccepted -eq 0)
    $Update.AcceptEula()
    # Add Update to Collection
    $UpdatesCollection = New-Object -ComObject Microsoft.Update.UpdateColl
    $UpdatesCollection.Add($Update) | out-null
    if ($installOption -eq "TESTINSTALL")
    else
    # Download
    logger " + Downloading Update $($Update.Title)" $logfile
    $UpdatesDownloader = $UpdateSession.CreateUpdateDownloader()
    $UpdatesDownloader.Updates = $UpdatesCollection
    $DownloadResult = $UpdatesDownloader.Download()
    $Message = " - Download {0}" -f (Get-WIAStatusValue $DownloadResult.ResultCode)
    if ($DownloadResult.ResultCode -eq 4 )
    { $errcnt = 1 }
    logger $message $logfile
    # Install
    logger " - Installing Update" $logfile
    $UpdatesInstaller = $UpdateSession.CreateUpdateInstaller()
    $UpdatesInstaller.Updates = $UpdatesCollection
    $InstallResult = $UpdatesInstaller.Install()
    $Message = " - Install {0}" -f (Get-WIAStatusValue $InstallResult.ResultCode)
    if ($InstallResult.ResultCode -eq 4 )
    { $errcnt = 1 }
    logger $message $logfile
    logger "" $logfile
    #Indien er een fout gebeurde tijdens download/installatie -> stuur mail naar windowsteam
    if ( $errcnt -gt 0 )
    logger " - Fout tijdens de uitvoering van script -> send mail" $logfile
    $mailSubject=$MyInvocation.MyCommand.Name
    $msg = new-object Net.Mail.MailMessage
    $att = new-object Net.Mail.Attachment($logfile)
    $smtp = new-object Net.Mail.SmtpClient($smtpServer)
    $msg.From = $mailFrom
    $msg.To.Add($mailTo)
    $msg.Subject = $mailSubject
    $msg.Body = “Meer details in attachement”
    $msg.Attachments.Add($att)
    $smtp.Send($msg)
    #Moet de server herstart worden ?
    if ($rebootOption -eq "REBOOT_IF_UPDATED" )
    if ($Updates -gt 0)
    #Reboot the server when updates are installed
    boot-server
    elseif ($rebootOption -eq "REBOOT")
    #reboot the server always
    boot-server
    else
    #Do not reboot the server
    logger "Do not reboot the server" $logfile
    Log-scriptEnd $MyInvocation.MyCommand.Name $logfile
    exit 0

  • What is the data associated with the APDU commands

    hi,
    Please guide me on what data should be associated with the command APDU.
    for eg. we send 00 a4 04 00 for the select command followed by the AID.
    Similarly what should be sent as a data (eg. AID in case of SELECT) with following APDU commands::::
    LOAD,, InItUPDATE,, External Authentication,, Install
    regards,,
    PhadkeA

    I have the book Javacard technology for smartcards by Zhiqun Chen so
    I" ll try to help you. About the install command it's syntax is:
    install(byte[] bArray,short bOffset,byte bLength)
    The bArray contains the installation parameters, but from what I read in
    the book they are optional. From the example of the book it seems
    that generally they are some initialization values for the variables of
    the applet.
    I didn't find any info about the other commands that you mention.Sorry!

  • Connecting to remote server failed with the following error message : Access is denied. For more information, see the about_Remote_Troubleshooting Help topic. It was running the command 'Discover-ExchangeServer -UseWIA $true -SuppressError $true -CurrentV

    I installed Exchange Server 2010 inside my VMWare Windows Server 2008 Ent R2. And After successful installation  when I try to open my Exchange Server Console, I am getting the following error message. I am very new to Exchange server please help me
    to solve this problem.
    Initialization Failed
    The following error occurred while searching for the on-premises Exchange server:
    [win-.local] Connecting to remote server failed with the following error message : Access is denied. For more information, see the about_Remote_Troubleshooting Help topic. It was running the command 'Discover-ExchangeServer -UseWIA $true -SuppressError
    $true -CurrentVersion 'Version 14.1 (Build 218.15)''.
    Thanks Vivek
    SharePoint Foundation 2010 Book
    http://www.redpipit.com

    Hi,
    Please have a look at the article below:
    Troubleshooting Exchange 2010 Management Tools startup issues
    http://blogs.technet.com/b/exchange/archive/2010/02/04/3409289.aspx
    Resolving WinRM errors and Exchange 2010 Management tools startup failures
    http://blogs.technet.com/b/exchange/archive/2010/12/07/3411644.aspx
    Besides, please run the cmdlet below:
     set-user alias -remotepowershellenabled$true
    Xiu Zhang
    TechNet Community Support

  • Problem with Updating clients with UNIX command

    Hi.
    Until this day, I used to update all our 50 client macs by manually logging in as administrator via ARD and choosing Software Update from the apple menu, this works always and I use our own servers SUS so the downloading is really fast. Still, this clearly is time consuming and annoying when you have this many clients. I have now done some search and I know I could do this by sending unix command to clients using ARD. First I had problems with running the command, then I noticed I need to run this as root. Then it "works".
    Works, not quite. It starts to run, and I can see all the output. I have tried this with few clients and the results are confusing. The following is an output from one client I send the command "softwareupdate -i -r"
    SIBELIUS411 (172.17.6.36)
    2011-03-25 13:13:20.610 softwareupdate[1692:392b] PackageKit: * Missing bundle identifier: /Library/Receipts/PPDInstallerRI3222E3L.pkg
    2011-03-25 13:14:09.636 softwareupdate[1692:392b] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    2011-03-25 13:14:09.798 softwareupdate[1692:392b] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    2011-03-25 13:14:09.801 softwareupdate[1692:392b] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.server.SystemImageUtility"></bundle>
    2011-03-25 13:19:40.016 softwareupdate[1692:903] PackageKit: * Missing bundle identifier: /Library/Receipts/PPDInstallerRI3222E3L.pkg
    Software Update Tool
    Copyright 2002-2009 Apple
    Downloading Safari
    Verifying Safari
    Waiting to install Safari
    Downloading Mac OS X Update Combined
    Verifying Mac OS X Update Combined
    Waiting to install Mac OS X Update Combined
    Downloading Ricoh Printer Software Update
    Verifying Ricoh Printer Software Update
    Waiting to install Ricoh Printer Software Update
    Downloading iWeb Update
    Verifying iWeb Update
    Waiting to install iWeb Update
    Downloading Java for Mac OS X 10.6 Update 4
    Verifying Java for Mac OS X 10.6 Update 4
    Waiting to install Java for Mac OS X 10.6 Update 4
    Downloading iTunes
    Verifying iTunes
    Waiting to install iTunes
    Downloading Remote Desktop Client Update x signature
    x RemoteDesktopClient.pkg.tar
    x RemoteDesktopClient.pkg
    x RemoteDesktopClient.pkg/Contents
    x RemoteDesktopClient.pkg/Contents/Archive.bom
    x RemoteDesktopClient.pkg/Contents/Archive.pax.gz
    x RemoteDesktopClient.pkg/Contents/Info.plist
    x RemoteDesktopClient.pkg/Contents/._RemoteDesktopClient.dist
    x RemoteDesktopClient.pkg/Contents/RemoteDesktopClient.dist
    x RemoteDesktopClient.pkg/Contents/Resources
    x RemoteDesktopClient.pkg/Contents/Resources/background.tif
    x RemoteDesktopClient.pkg/Contents/Resources/BundleVersions.plist
    x RemoteDesktopClient.pkg/Contents/Resources/cleanup_list
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/InstallationCheck.strings
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/deleteomatic
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/InstallationCheck.string s
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/InstallationCheck.stri ngs
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/InstallationCheck.strings
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/InstallationCheck.strin gs
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/InstallationCheck.strin gs
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Hints.plist
    x RemoteDesktopClient.pkg/Contents/Resources/InstallationCheck
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/InstallationCheck.stri ngs
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/InstallationCheck.str ings
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Welcome.rtfd/icons.pn g
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/kickstart
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/InstallationCheck.strings
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/makeuser
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/InstallationCheck.strings
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/package_version
    x RemoteDesktopClient.pkg/Contents/Resources/PlistBuddy
    x RemoteDesktopClient.pkg/Contents/Resources/postflight
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/cleanStartup.pl
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/copypackages
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/deleteObsoleteFil es
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/learnFiles
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/postflightKicksta rt
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/setupLaunchFiles
    x RemoteDesktopClient.pkg/Contents/Resources/postflightactions/setupLaunchFilesRFBEventHelper
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/setupMenuExtras
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/stampBuildNumInPl istStrings
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_kickstart
    x RemoteDesktopClient.pkg/Contents/Resources/postflightkickstartentries
    x RemoteDesktopClient.pkg/Contents/Resources/postflightmakeuserentries
    x RemoteDesktopClient.pkg/Contents/Resources/preflight
    x RemoteDesktopClient.pkg/Contents/Resources/preflight_actions
    x RemoteDesktopClient.pkg/Contents/Resources/preflight_actions/cleanAndPreflightK ickstart
    x RemoteDesktopClient.pkg/Contents/Resources/preflight_actions/maybeNukeVNCServer
    x RemoteDesktopClient.pkg/Contents/Resources/preflight_actions/moveAsideFirewallD efaultPrefsTiger
    x RemoteDesktopClient.pkg/Contents/Resources/preflight_kickstart
    x RemoteDesktopClient.pkg/Contents/Resources/preflightkickstartentries
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/InstallationCheck.strings
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/InstallationCheck.stri ngs
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/InstallationCheck.strings
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/InstallationCheck.string s
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/InstallationCheck.string s
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/version.plist
    Verifying Remote Desktop Client Update
    Waiting to install Remote Desktop Client Update
    Checking packages…
    Installing
    Waiting for other installations to complete…2011-03-25 13:20:01.468 softwareupdate[1692:37b7] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    2011-03-25 13:20:01.471 softwareupdate[1692:37b7] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.server.SystemImageUtility"></bundle>
    2011-03-25 13:20:01.540 softwareupdate[1692:37b7] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    2011-03-25 13:20:01.731 softwareupdate[1692:37b7] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    2011-03-25 13:20:01.734 softwareupdate[1692:37b7] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.server.SystemImageUtility"></bundle>
    2011-03-25 13:20:01.808 softwareupdate[1692:37b7] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    Validating packages…
    Writing files…
    Running package scripts…
    Removing old files…
    Optimizing system for installed software…
    Moving items into place…
    Registering updated components…
    And thats it, it stops there. Few clients completed the task, but the output says that they skipped the installation of all updates. In the case above, there is some skipping too, and I don't know what it means. Yesterday I left one client to this part where its Registering updated components.... , and today when I came in, it's still there, and the task is still running. When I update the clients with the Software Update from apple menu, it takes usually 10 minutes max to complete the whole process, download and install. After I restarted the same client and ran the manual Software Update from apple menu, it shows the same updates, it didn't do anything???
    Am I doing something wrong with the command?

    I am having the same issue. I send the unix command to some test clients to install all updates. The process never finishes and stays at "Registering updated companents....". (See screen shot)
    I have manually restarted some of the clients after waiting a very long time. All updates seem to have been installed. I am wondering why the task hangs at this point. I want to be able to ran ASU with this Unix method on the 450+ macs that I manage at work, but it scares me that the task never seems to finish.

  • Remote Data Transmissi​on Without Internet

    Hi
    I need to transmit data from, and send commands to a remote research
    probe to a PC terminal for data analysis, but without the internet as
    the probe will (ideally) be in the middle of a lake in the middle of
    nowhere.  LabVIEW seems to be an excellent solution in software,
    but is there such hardware that can help me accomplish this like the
    CAN series?  Or do I need the terminal to be close by? 
    Thank you for your help.

    Good afternoon Ramona,
    Thanks for contacting National Instruments with your issue, we'll try our best to resolve it for you as quickly and efficiently as possible.
    If you wish to transmit data wirelessly, National Instruments provides a 2.7 GHz RF Vector Signal Generator:
    http://sine.ni.com/nips/cds/view/p/lang/en/nid/201​954
    It will allow you to generate data in a variety of modulation schemes which can then be received and analyzed via our 2.7 GHz RF Vector Signal Analyzer:
    http://sine.ni.com/nips/cds/view/p/lang/en/nid/115​34
    If it's possible to use wire, we have our MXI-4 solution:
    http://sine.ni.com/nips/cds/view/p/lang/en/nid/131​80 
    This will allow you to transmit data at up to 78 MB/s along fibre optic cables up to 200 m. 
    Best of luck with your project.
    Sincerely,
    Minh Tran
    Applications Engineering
    National Instruments

  • Accessing tape device from Terminal program using UNIX tar command

    I am trying to create some tape backups of very large files (.dmg images) using the UNIX tar command.
    I have a 72GB HP 4mm DAT USB drive, which shows up in the system profiler as:
    DAT72 USB Tape:
    Version: 30.30
    Bus Power (mA): 500
    Speed: Up to 480 Mb/sec
    Manufacturer: Hewlett Packard
    Product ID: 0x0125
    Serial Number: 4855310528334645
    Vendor ID: 0x03f0
    But I do not see the device in the /dev/ directory (see below).
    Is there a way I can determine the UNIX device name?
    Or must I locate and load a driver for this DAT drive?
    Thank you
    Jeff Cameron
    Last login: Mon Jun 9 20:14:36 on ttys000
    caladan:~ jeff$ ls /dev/
    appleAE0 ptyq7 ptyuc ttyp0 ttyt4
    autofs ptyq8 ptyud ttyp1 ttyt5
    autofs_control ptyq9 ptyue ttyp2 ttyt6
    autofs_nowait ptyqa ptyuf ttyp3 ttyt7
    bpf0 ptyqb ptyv0 ttyp4 ttyt8
    bpf1 ptyqc ptyv1 ttyp5 ttyt9
    bpf2 ptyqd ptyv2 ttyp6 ttyta
    bpf3 ptyqe ptyv3 ttyp7 ttytb
    console ptyqf ptyv4 ttyp8 ttytc
    cu.Bluetooth-Modem ptyr0 ptyv5 ttyp9 ttytd
    cu.Bluetooth-PDA-Sync ptyr1 ptyv6 ttypa ttyte
    cu.Palm ptyr2 ptyv7 ttypb ttytf
    cu.modem ptyr3 ptyv8 ttypc ttyu0
    disk0 ptyr4 ptyv9 ttypd ttyu1
    disk0s1 ptyr5 ptyva ttype ttyu2
    disk0s3 ptyr6 ptyvb ttypf ttyu3
    disk1 ptyr7 ptyvc ttyq0 ttyu4
    disk1s1 ptyr8 ptyvd ttyq1 ttyu5
    disk1s3 ptyr9 ptyve ttyq2 ttyu6
    disk1s5 ptyra ptyvf ttyq3 ttyu7
    disk2 ptyrb ptyw0 ttyq4 ttyu8
    disk2s1 ptyrc ptyw1 ttyq5 ttyu9
    disk2s10 ptyrd ptyw2 ttyq6 ttyua
    disk2s11 ptyre ptyw3 ttyq7 ttyub
    disk2s2 ptyrf ptyw4 ttyq8 ttyuc
    disk2s3 ptys0 ptyw5 ttyq9 ttyud
    disk2s4 ptys1 ptyw6 ttyqa ttyue
    disk2s5 ptys2 ptyw7 ttyqb ttyuf
    disk2s6 ptys3 ptyw8 ttyqc ttyv0
    disk2s7 ptys4 ptyw9 ttyqd ttyv1
    disk2s8 ptys5 ptywa ttyqe ttyv2
    disk3 ptys6 ptywb ttyqf ttyv3
    disk3s1 ptys7 ptywc ttyr0 ttyv4
    disk3s3 ptys8 ptywd ttyr1 ttyv5
    disk3s5 ptys9 ptywe ttyr2 ttyv6
    dtrace ptysa ptywf ttyr3 ttyv7
    dtracehelper ptysb random ttyr4 ttyv8
    fbt ptysc rdisk0 ttyr5 ttyv9
    fd ptysd rdisk0s1 ttyr6 ttyva
    fsevents ptyse rdisk0s3 ttyr7 ttyvb
    klog ptysf rdisk1 ttyr8 ttyvc
    lockstat ptyt0 rdisk1s1 ttyr9 ttyvd
    machtrace ptyt1 rdisk1s3 ttyra ttyve
    null ptyt2 rdisk1s5 ttyrb ttyvf
    profile ptyt3 rdisk2 ttyrc ttyw0
    ptmx ptyt4 rdisk2s1 ttyrd ttyw1
    ptyp0 ptyt5 rdisk2s10 ttyre ttyw2
    ptyp1 ptyt6 rdisk2s11 ttyrf ttyw3
    ptyp2 ptyt7 rdisk2s2 ttys0 ttyw4
    ptyp3 ptyt8 rdisk2s3 ttys000 ttyw5
    ptyp4 ptyt9 rdisk2s4 ttys1 ttyw6
    ptyp5 ptyta rdisk2s5 ttys2 ttyw7
    ptyp6 ptytb rdisk2s6 ttys3 ttyw8
    ptyp7 ptytc rdisk2s7 ttys4 ttyw9
    ptyp8 ptytd rdisk2s8 ttys5 ttywa
    ptyp9 ptyte rdisk3 ttys6 ttywb
    ptypa ptytf rdisk3s1 ttys7 ttywc
    ptypb ptyu0 rdisk3s3 ttys8 ttywd
    ptypc ptyu1 rdisk3s5 ttys9 ttywe
    ptypd ptyu2 sdt ttysa ttywf
    ptype ptyu3 stderr ttysb urandom
    ptypf ptyu4 stdin ttysc vn0
    ptyq0 ptyu5 stdout ttysd vn1
    ptyq1 ptyu6 systrace ttyse vn2
    ptyq2 ptyu7 tty ttysf vn3
    ptyq3 ptyu8 tty.Bluetooth-Modem ttyt0 zero
    ptyq4 ptyu9 tty.Bluetooth-PDA-Sync ttyt1
    ptyq5 ptyua tty.Palm ttyt2
    ptyq6 ptyub tty.modem ttyt3
    caladan:~ jeff$ logout

    I downloaded the BRU LE 30 day evaluation, and my first impression is favorable. I still need to perform a bit of testing. The HP drive I have does 36 GB per tape (72 at 50% hardware compression). My first attempt was to back up a single 22 GB .dmg file. Even with no compression it should have fit on one DAT tape, but after backing up 90% of the 22 GB it asked for a second tape. I still have to do more testing, but I very much appreciate the point in the very promising direction.
    I will reply again to this thread with my results.
    Jeff Cameron

  • Repost: TAR command issue

    I am moving this item to its own post because it turned out to not be related to the original item.
    I have been having a problem when attempting to create a VM using the VMs provided by JumpBox (www.jumpbox.com). It seems to get stuck untarring the data drive or any tar for that matter. My hypervisor system locks up completely when I simply try to untar the file at the command line. It requires me to do a hard power reset of the server to recover from the lock.
    The file is a 10g compressed file which on my other (standard Oracle Linux) box decompresses in 1 second. I can then transfer the file using sftp to the Oracle VM server and create the VM with no problems.
    I have not retested since changing the /OVS partition to sync. Could leaving this as default been the problem?

    The problem with the TAR command was the mounting of the file system with the sync option. After retesting the IO to the disk is very very slow. uncompressing a virtual disk file of 10gb takes roughly 1 hour on the vm server and 3 seconds on my regular linux box. Any ideas on what I can do to increase the performance?

  • Action with Move command fails after illustrator restarts

    Make new illustrator file
    Make a Rectangle
    Make a new action
    While recording action press enter, and move any direction
    Stop recording
    Run action again to test
    Close Illustrator
    Open Illustrator
    Try and use action
    Fails and gives error "The object 'Move' is not currently available, the action button turns orange.
    It also fails in button mode
    It fails if I try to reload the actions
    It only works if I recreate them in that session illustrator is open.
    Expected Behavior
    Actions work no matter how many times you restart illustrator

    Sorry about not being very clear originally. We don't actually send remote notices to the target machines via ARD. The command
    osascript -e 'tell application "System Events" to display dialog "Message"'
    is just an example of what ARD is having issues with for me: If the script for the target machine pushes any user-facing GUI at all, it will not quit until someone manually OKs or closes the window... no amount of messing with the command by giving it ampersands or starting subshells prevents ARD from minding every single one of the subprocesses that it has started.
    There are posts here where we see that a certain task never even "ends" in ARD's eyes: the scripted reboot
    A colleague has suggested that we update our application to echo command information instead of triggering an "Everything was OK" dialog. Most of the time this will fail because you do not have access to the source code in the real world. In my case, we do, but making the changes requires reviewing, changing the code and new testing for the triggered application.
    Still, there is a flaw in not having an option for ARD to just hit-and-run with a script to, say, open a presentation in 100 computers and leave it running. Currently, ARD will hit a few and hang on "Running" as soon as its whatever maximum parallel workstations is stuck running this script.
    ARD designers seem to have planned it "we must receive the return value of this open-ended script," while clients see it as "please let us treat the job as finished as soon as the last line has been triggered"

  • How can I access my parents iCloud account remotely to assist with photo management and printing?

    How can I access my parents iCloud account remotely to assist with photo management and printing?

    I tried that without any luck. I was hoping I could get Apple to reset it for me or delete the account so I could recreate it or at least tell me what is listed as my birth date, the security question answer.

Maybe you are looking for

  • Clearing problem for vendor open item

    while clearing open item of vendor through T-code F-44 i am facing the problem following problem Document splitting :-Item for clearing 1000/100020603/2006/005 not found, Daignosis as given in error:-document splittting cannot be performed clearing b

  • No advanced option in printer settings

    My computer and printer will print anything but pdf files, i have no advabced option in my print screen, WTF is going on, worked fine 2 days ago

  • BPM 11g ADF BC Web Service

    I've created, tested and successfully deployed an ADF BC Web Service to the SOA server using JDeveloper 11.1.1.7.  Using the BPM 11g Process Composer tool, how do I access the deployed ADF BC Web Service?  I would like to use the named view criteria

  • Keyboard not working in Finder

    I just got a new 2.66 GHz Dual-Core Intel Xeon Mac Pro with running 10.4.7 and I am having the weirdest problem. The Keyboard doesn't function properly in the finder! It works fine in all applications, but when I try to do a search in spotlight or na

  • Display log!

    HI All, Trying to make a delivery with reference to ORDER,and am getting this problem:Order is incomplete-maintain the order!! At the bottom it says: Order cannot be delivered(see long text) how can I proceed? ralph.