Script to get application stats running on multiple windows servers

Hi,
 I am beginner in powershell and trying to write a script to get the different stats of an application/s running on  windows WAS server. am trying to gather all the stats into one custom object and planning the tabular output to send via html mail.
am finding it hard to frame logic to get this done and below is piece of script. can somebody guide on this ?
# Get the profiles list in the server
$ppath = "profilePath"
$profiles = Get-ChildItem "profilePath" | ForEach-Object { $_.Name }
$SystemInfo = @()
$profiles | ForEach-Object {$_}{
$Obj = New-Object -TypeName PSObject
$pathToCheck = $ppath + $_ + "application path" 
$SerFile = "profilePath" + $_ + "service file"
$ContFile = "profilePath" + $_ + "context file"
if(Test-Path $pathToCheck)
#Write-Host "Profile ==>" $_
$Obj | Add-Member -MemberType NoteProperty -Name Profile -Value $_
$PIDFile = $ppath + $_ + "PID file path"
if(test-path $PIDFile)
$ProcID = get-content $PIDFile
#Write-Host "PID     ==>" $ProcID
$memTmp = Get-WmiObject -class Win32_PerfFormattedData_PerfProc_Process | where{$_.idprocess -eq $ProcID} | Select WorkingSetPrivate
$memUsage = $memTmp | Select -Expand WorkingSetPrivate
#Write-host "Memory  ==>" $memUsage
else{
$ProcID = "PID Not Found"
$Obj | Add-Member -MemberType NoteProperty -Name Memory -Value $memUsage
if(test-path $SerFile)
$temp = Get-ChildItem -name $SerFile
$SerStr = $temp.Substring(0,4)
$nm = Get-Service -name *$SerStr* | Select Name
$name = $nm | select -expand Name
$sts = Get-Service -name *$SerStr* | Select Status
$status = $sts | select -expand Status
#Write-Host "Service Name ==>" $name
#write-host "Status " ==> $status
else{
$SerStr = "Service Not Found"
$Obj | Add-Member -MemberType NoteProperty -Name Service-Name  -Value $name
$Obj | Add-Member -MemberType NoteProperty -Name Service-Status -Value $status
if(test-path $ContFile)
[XML]$rav = get-content $ContFile
       $tmp1 = @($rav.GetElementsByTagName("context-root"))
       $client = $tmp1[0]."#text"
       #write-host "Environment" ==> $client
else{
$client = "ContextRoot Not Found"
   }$Obj | Add-Member -MemberType NoteProperty -Name Environment -Value $client
write-output $Obj | format-table -autosize  Profile , Environment

Hi Ravi0211,
The script below may be helpful for you, which can filter the process based on the property "idprocess" and the services based on the service "name":
$pids=@()
$output=@()
$output1=@()
get-content d:\processid.txt|foreach{
$pids+=$_} #store the processid as an array
Get-WmiObject -class Win32_PerfFormattedData_PerfProc_Process | foreach{
if ($pids -contains $_.idprocess){#filter the processid listed in the file d:\processid.txt
$Obj = New-Object -TypeName PSObject
$Obj | Add-Member -MemberType NoteProperty -Name idprocess -Value $_.idprocess
$Obj | Add-Member -MemberType NoteProperty -Name Memory -Value $_.WorkingSetPrivate
$output+=$obj}
$services = get-content d:\service.txt
Foreach($service in $services){
Get-service | foreach{
If ($_.name –like “*$service*”){#filter the service based on the service name stored in d:\service.txt
$Obj1 = New-Object -TypeName PSObject
$Obj1 | Add-Member -MemberType NoteProperty -Name Service-Name -Value $_.name
$Obj1 | Add-Member -MemberType NoteProperty -Name Service-Status -Value $_.status
$output1+=$obj1}
$output
$output1
I hope this helps.

Similar Messages

  • Powershell script to get the low disk space on the servers...

    Hi,
    We have many SQL & Sharepoint servers running on windows server. I need some Powershell script to get the low disk space on those servers and it should send an mail alert saying "Disc d:\ have less than threshold 15% free space".
    Awaiting for response.
    Thanks
    Anil

    you should be able to use this powershell script which you can run as a scheduled task.
    just change the details at the start of the script to point the script to the right location to create log files. you will need to have a plain text file containing a list of server names or ip addresses that you want to check drive space on.
    # Change the following variables based on your environment
    #specify the path to the file you want to generate containing drive space information
    $html_file_dir = "\\server\share\DriveSpace"
    #specify the path and file name of the text file containing the list of servers names you want to check drive space on - each server name on a seperate line in plain text file
    $server_file = "\\server\share\servers.txt"
    #speicfy the from address for the email
    $from_address = "[email protected]"
    #specify the to address for the email
    $to_address = "[email protected]"
    #specify the smtp server to use to send the email
    $email_gateway = "smtp.domain.com" # Can either be DNS name or IP address to SMTP server
    # The seventh line from the bottom (line 167) is used if your smtp gateway requires authentication. If you require smtp authentication
    # you must uncomment it and set the following variables.
    $smtp_user = ""
    $smtp_pass = ""
    # Change the following variables for the style of the report.
    $background_color = "rgb(140,166,193)" # can be in rgb format (rgb(0,0,0)) or hex format (#FFFFFF)
    $server_name_font = "Arial"
    $server_name_font_size = "20px"
    $server_name_bg_color = "rgb(77,108,145)" # can be in rgb format (rgb(0,0,0)) or hex format (#FFFFFF)
    $heading_font = "Arial"
    $heading_font_size = "14px"
    $heading_name_bg_color = "rgb(95,130,169)" # can be in rgb format (rgb(0,0,0)) or hex format (#FFFFFF)
    $data_font = "Arial"
    $data_font_size = "11px"
    # Colors for space
    $very_low_space = "rgb(255,0,0)" # very low space equals anything in the MB
    $low_space = "rgb(251,251,0)" # low space is less then or equal to 10 GB
    $medium_space = "rgb(249,124,0)" # medium space is less then or equal to 100 GB
    #### NO CHANGES SHOULD BE MADE BELOW UNLESS YOU KNOW WHAT YOU ARE DOING
    # Define some variables
    $ErrorActionPreference = "SilentlyContinue"
    $date = Get-Date -UFormat "%Y%m%d"
    $html_file = New-Item -ItemType File -Path "$html_file_dir\DiskSpace_$date.html" -Force
    # Create the file
    $html_file
    # Function to be used to convert bytes to MB or GB or TB
    Function ConvertBytes {
    param($size)
    If ($size -lt 1MB) {
    $drive_size = $size / 1KB
    $drive_size = [Math]::Round($drive_size, 2)
    [string]$drive_size + ' KB'
    }elseif ($size -lt 1GB){
    $drive_size = $size / 1MB
    $drive_size = [Math]::Round($drive_size, 2)
    [string]$drive_size + ' MB'
    }ElseIf ($size -lt 1TB){
    $drive_size = $size / 1GB
    $drive_size = [Math]::Round($drive_size, 2)
    [string]$drive_size + ' GB'
    }Else{
    $drive_size = $size / 1TB
    $drive_size = [Math]::Round($drive_size, 2)
    [string]$drive_size + ' TB'
    # Create the header and footer contents of the html page for output
    $html_header = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html lang="en-US" xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Server Drive Space</title>
    <style type="text/css">
    .serverName { text-align:center; font-family:"' + $server_name_font + '"; font-size:' + $server_name_font_size + `
    '; font-weight:bold; background-color: ' + $server_name_bg_color + '; border: 1px solid black; width: 150px; }
    .headings { text-align:center; font-family:"' + $heading_font + '"; font-size:' + $heading_font_size + `
    '; font-weight:bold; background-color: ' + $heading_name_bg_color + '; border: 1px solid black; width: 150px; }
    .data { font-family:"' + $data_font + '"; font-size:' + $data_font_size + '; border: 1px solid black; width: 150px; }
    #dataTable { border: 1px solid black; border-collapse:collapse; }
    body { background-color: ' + $background_color + '; }
    #legend { border: 1px solid black; ; right:500px; top:10px; }
    </style>
    <script language="JavaScript" type="text/javascript">
    <!--
    function zxcWWHS(){
    if (document.all){
    zxcCur=''hand'';
    zxcWH=document.documentElement.clientHeight;
    zxcWW=document.documentElement.clientWidth;
    zxcWS=document.documentElement.scrollTop;
    if (zxcWH==0){
    zxcWS=document.body.scrollTop;
    zxcWH=document.body.clientHeight;
    zxcWW=document.body.clientWidth;
    else if (document.getElementById){
    zxcCur=''pointer'';
    zxcWH=window.innerHeight-15;
    zxcWW=window.innerWidth-15;
    zxcWS=window.pageYOffset;
    zxcWC=Math.round(zxcWW/2);
    return [zxcWW,zxcWH,zxcWS];
    window.onscroll=function(){
    var img=document.getElementById(''legend'');
    if (!document.all){ img.style.position=''fixed''; window.onscroll=null; return; }
    if (!img.pos){ img.pos=img.offsetTop; }
    img.style.top=(zxcWWHS()[2]+img.pos)+''px'';
    //-->
    </script>
    </head>
    <body>'
    $html_footer = '</body>
    </html>'
    # Start to create the reports file
    Add-Content $html_file $html_header
    # Retrieve the contents of the server.txt file, this file should contain either the
    # ip address or the host name of the machine on a single line. Loop through the file
    # and get the drive information.
    Get-Content $server_file |`
    ForEach-Object {
    # Get the hostname of the machine
    $hostname = Get-WmiObject -Impersonation Impersonate -ComputerName $_ -Query "SELECT Name From Win32_ComputerSystem"
    $name = $hostname.Name.ToUpper()
    Add-Content $html_file ('<Table id="dataTable"><tr><td colspan="3" class="serverName">' + $name + '</td></tr>
    <tr><td class="headings">Drive Letter</td><td class="headings">Total Size</td><td class="headings">Free Space</td></tr>')
    # Get the drives of the server
    $drives = Get-WmiObject Win32_LogicalDisk -Filter "drivetype=3" -ComputerName $_ -Impersonation Impersonate
    # Now that I have all the drives, loop through and add to report
    ForEach ($drive in $drives) {
    $space_color = ""
    $free_space = $drive.FreeSpace
    $total_space = $drive.Size
    $percentage_free = $free_space / $total_space
    $percentage_free = $percentage_free * 100
    If ($percentage_free -le 5) {
    $space_color = $very_low_space
    }elseif ($percentage_free -le 10) {
    $space_color = $low_space
    }elseif ($percentage_free -le 15) {
    $space_color = $medium_space
    Add-Content $html_file ('<tr><td class="data">' + $drive.deviceid + '</td><td class="data">' + (ConvertBytes $drive.size) + `
    '</td><td class="data" bgcolor="' + $space_color + '">' + (ConvertBytes $drive.FreeSpace) + '</td></tr>')
    # Close the table
    Add-Content $html_file ('</table></br><div id="legend">
    <Table><tr><td style="font-size:12px">Less then or equal to 5 % free space</td><td bgcolor="' + $very_low_space + '" width="10px"></td></tr>
    <tr><td style="font-size:12px">Less then or equal to 10 % free space</td><td bgcolor="' + $low_space + '" width="10px"></td></tr>
    <tr><td style="font-size:12px">Less then or equal to 15 % free space</td><td bgcolor="' + $medium_space + '" width="10px"></td></tr>
    </table></div>')
    # End the reports file
    Add-Content $html_file $html_footer
    # Email the file
    $mail = New-Object System.Net.Mail.MailMessage
    $att = new-object Net.Mail.Attachment($html_file)
    $mail.From = $from_address
    $mail.To.Add($to_address)
    $mail.Subject = "Server Diskspace $date"
    $mail.Body = "The diskspace report file is attached."
    $mail.Attachments.Add($att)
    $smtp = New-Object System.Net.Mail.SmtpClient($email_gateway)
    #$smtp.Credentials = New-Object System.Net.NetworkCredential($smtp_user,$smtp_pass)
    $smtp.Send($mail)
    $att.Dispose()
    # Delete the file
    Remove-Item $html_file
    Regards,
    Denis Cooper
    MCITP EA - MCT
    Help keep the forums tidy, if this has helped please mark it as an answer
    My Blog
    LinkedIn:

  • I have an OpenGL application that run in a window. I would like to use this application and use its window in a VI interface. Note t

    hat I DON'T WANT TO OPEN the window application FROM the Labview VI BUT IN the Labview VI. I think it's possible to do that and to do communicate the OpenGL application with the Labview Interface using an ActiveX but I don't know how. Can someone help me ?You can answer the question or send it at [email protected]
    Regards.
    Cyril

    hat I DON'T WANT TO OPEN the window application FROM the Labview VI BUT IN the Labview VI. I think it's possible to do that and to do communicate the OpenGL application with the Labview Interface using an ActiveX but I don't know how. Can someone help me ?The desired behavior you desribed may not be possible with that application. In general LabVIEW does not offer a window object that other standalone applications can run it. The closest thing is the ActiveX container. If the programmers for your application created an activeX control of your program and they provided documentation, it should be pretty easy to incorperate the app and labview into one window. I recommend contacting the manufacuturer of the app to see if they have an activeX control version of the app.

  • Application Server slowdown with multiple proxy servers ?

    Our environment has our iAS boxes talking to iWS web servers which are front-ended with iPlanet Proxy servers (Proxy 3.53 I believe). We are seeing significant slowdown if we try and hit our web apps through the proxy as opposed to going directly to the web server (bypassing the proxy servers). One of our "proxy" guys recalls hearing that there is an issue with the app server's handling of sessions if requests from the same user come in to the web server (and by extension the app server) from multiple proxy servers with different ip's. Has any body ever encountered this or does any body know if the app server has an issue handling the same sessions whose requests come from different ip addresses (different proxies)?

    The proxy work with HTTP 1.0 and the webserver with HTTP 1.1.
    This difference could be the cause of your problems.
    "David Fuelling" <[email protected]> escribio en el mensaje
    news:[email protected]..
    Our environment has our iAS boxes talking to iWS web servers which are
    front-ended with iPlanet Proxy servers (Proxy 3.53 I believe). We
    are seeing significant slowdown if we try and hit our web apps through
    the proxy as opposed to going directly to the web server (bypassing
    the proxy servers). One of our "proxy" guys recalls hearing that
    there is an issue with the app server's handling of sessions if
    requests from the same user come in to the web server (and by
    extension the app server) from multiple proxy servers with different
    ip's. Has any body ever encountered this or does any body know if the
    app server has an issue handling the same sessions whose requests come
    from different ip addresses (different proxies)?
    Try our New Web Based Forum at http://softwareforum.sun.com
    Includes Access to our Product Knowledge Base!

  • Simple Question (WLST to get Application state)

    ok.. Here what i did..
    ./wlst.sh
    domainRuntime()
    cd('AppRuntimeStateRuntime')
    cd('AppRuntimeStateRuntime')
    ls()
    OUTPUT
    -r-- ApplicationIds java.lang.String[myApp2, myApp1]
    -r-- Name AppRuntimeStateRuntime
    -r-- Type AppRuntimeStateRuntime
    -r-x getCurrentState String : String(appid),String(moduleid),String(subModuleId),String(target)
    -r-x getCurrentState String : String(appid),String(moduleid),String(target)
    -r-x getCurrentState String : String(appid),String(target)
    -r-x getIntendedState String : String(appid)
    -r-x getIntendedState String : String(appid),String(target)
    -r-x getModuleIds String[] : String(appid)
    -r-x getModuleTargets String[] : String(appid),String(moduleid)
    -r-x getModuleTargets String[] : String(appid),String(moduleid),String(subModuleId)
    -r-x getModuleType String : String(appid),String(moduleid)
    -r-x getRetireTimeMillis Long : String(appid)
    -r-x getRetireTimeoutSeconds Integer : String(appid)
    -r-x getSubmoduleIds String[] : String(appid),String(moduleid)
    -r-x isActiveVersion Boolean : String(appid)
    -r-x isAdminMode Boolean : String(appid),String(java.lang.String)
    getCurrentState('myApp2','mycluster')
    OUTPUT
    Traceback (innermost last):
    File "<console>", line 1, in ?
    NameError: getCurrentState
    What Am I Doing wrong.?

    All the above classes are available in "weblogic.jar" file
    c:\bea103\wlserver_10.3\server\lib\weblogic.jar
    If you want to use Lightweight Jars..then you can use wljmxclient.jar and wlclient.jar together. These Jars are also available in the Same Location.
    Thanks
    Jay SenSharma
    Edited by: user8867025 on Dec 13, 2009 2:33 AM

  • Get Skype - always running in background - Windows 10

    Hi,as we know that Windows 10 comes with an in-built app called "Get Skype".
     Now clicking on the "Download Skype" button it actually downloads the Desktop version of Skype.  Which has a issue with Quiting Skype a & which has been mentioned here - http://community.skype.com/t5/Windows-desktop-client/Skype-not-letting-me-quit-on-Windows-10/td-p/4064192
    But moreover what I found out is that even after I have installed Skype by clicking the Download Skype button from Get Skype app and even if my Skype desktop version is closed, the "Get Skype" App is still running on the background and destrying my resouce. Infact I don't even understand that whats the point of having that "Get Skype" app all along when it does not do anything but showing an hyperlink? 

    I actually haven't had issues quitting Skype on Windows 10, though some have.  If you are having issues using the taskbar/shortuct icon to quit, then try quitting using the system tray/notification icon.    The other version of Skype is Modern Skype which has been discontinued on PCs.  You can uninstall it to free up resources as it no longer serves a purpose once you have the desktop version installed. https://support.skype.com/en/faq/FA12228

  • How to get application's state on weblogic server using jmx.

    I want to get application state using JMX, I am able to get application list, name but not able to find its state. Some code snippet mentioned below. Please let me know if I can use some other MBean
    Thanks in advance..
    static {
    try {
    service = new ObjectName("com.bea:Name=DomainRuntimeService,Type=weblogic.management.mbeanservers.domainruntime.DomainRuntimeServiceMBean");
    }catch (MalformedObjectNameException e) {
    throw new AssertionError(e.getMessage());
    * Initialize connection to the Domain Runtime MBean Server
    public static void initConnection(String hostname, String portString, String username, String password) throws IOException, MalformedURLException
    String protocol = "t3";
    int port = Integer.parseInt(portString);
    String jndiroot = "/jndi/";
    String mserver = "weblogic.management.mbeanservers.domainruntime";
    JMXServiceURL serviceURL= new JMXServiceURL(protocol,hostname, port, jndiroot+mserver);
    // JMXServiceURL serviceURL = new JMXServiceURL(protocol, hostname, portString, jndiroot , mserver);
    Hashtable h = new Hashtable();
    h.put(Context.SECURITY_PRINCIPAL, username);
    h.put(Context.SECURITY_CREDENTIALS, password);
    h.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,
    "weblogic.management.remote");
    connector = JMXConnectorFactory.connect(serviceURL, h);
    connection = connector.getMBeanServerConnection();
    * Get an array of ServerRuntimeMBeans
    public static ObjectName[] getServerRuntimes() throws Exception {
    return (ObjectName[]) connection.getAttribute(service,
    "ServerRuntimes");
    * Get an array of WebAppComponentRuntimeMBeans
    public void getApplicationData() throws Exception {
    ObjectName[] serverRT = getServerRuntimes();
    int length = (int) serverRT.length;
    for (int i = 0; i < length; i++) {
    ObjectName[] appRT =
    (ObjectName[]) connection.getAttribute(serverRT,
    "ApplicationRuntimes");
    int appLength = (int) appRT.length;
    for (int x = 0; x < appLength; x++) {
    System.out.println("Application name: " +
    (String)connection.getAttribute(appRT[x], "Name")+"Application Status"+(String)connection.getAttribute(appRT[x], "State"));
    public static void main(String[] args) throws Exception {
    String hostname = "*****.us.oracle.com";
    String portString = "*****";
    String username = "***";
    String password = "****";
    JMXUtil s = new JMXUtil();
    initConnection(hostname, portString, username, password);
    s.getApplicationData();
    connector.close();

    register at elicense.bea.com and ask there.
    but, a license is a license, as long as the ipaddr is not restricted.
    Wayne
    Bora wrote:
    I downloaded an Evaluation copy from BEA but it expires in 30 days. The place I
    work has licenses for HPUX but I need to have a copy on my laptop for development
    & test.
    Thanks for help!
    Sincerely
    Bora

  • WLST-script showing application state as NEW instead of ACTIVE.

    Hi,
    I wrote a script for displaying application state in wlst, the script ran fine previously but now its displaying STATE_NEW instead of STATE_ACTIVE.
    Not only to active but also other application states(i.e., STATE_PREPARED).
    Please suggest me some clue.
    Thanks,
    Abhi.

    Hi Jay,
    Thanks for reply.
    There are no warnings/errors while deploying the application, i can able to access the application but while checking with the status of the application by script it showing STATE_NEW instead of other application states.
    I tried even stopping the application(STATE_PREPARED) but no use it is still displaying same state.
    Thanks,
    Abhi

  • How can I switch between multiple windows of the same application (e.g. Safari) over several desktops ?

    Hi All,
    I have one application, for example safari, open and running with multiple windows (with or without tabs) spread over several desktops.
    How can I switch between the windows only via keyboard? CMD+> and CMD+< let me only swicht between windows open on the one desktop I am currently looking at.
    thanks for your replies,
    equi

    Barney,
    many thanks for your efforts and your time (preparing and posting the screenshot, answering to this question,...).
    Unfortunately, moving the focus to the next window only works with windows on the same desktop.
    btw, using a german keyboard layout and german language settings the shortcut is "cmd+<".
    I can switch with this shortcut between different windows of my Safari which reside on the same desktop, but I cannot swith between different safari windows distributed over several desktops.
    Thanks,
    equi    

  • How to get 'clover.cmd' running as Windows service?

    Right now I have the InDesign instances all running great as services so on a server reboot they start up fine. The clover/lbq part is  just the .cmd script and it's not running as a service. I looked in the documentation but haven't found any info on getting clover to run as a Windows service.
    Anyone know how to set it to do this? I'm on InDesign CS6 (server).
    thanks.

    This information is in the Install Guide that comes with EAS.Running EAS as a Windows service is an option you can select when you install it. If you did not do that, you can set it up to run as service by doing the following: (From the EAS Install Guide)----------------------------------------Adding Administration Server as a Windows ServiceYou can add Administration Server as a Windows service, even if it was not installed as a Windows service.?To add Administration Server to the list of Windows services:1. From a command prompt, navigate to the following directory: EASPATH\eas\server\bin2. Run the following command: install_service.batAdministration Services installs the Windows service as Hyperion-Essbase_Administration_Server Windows service. A message displayed in the command prompt window indicates that the service is installed.3. Start the Hyperion-Essbase_Administration_Server Windows service. See ?Starting the Administration Server Windows Service? on page 49.The Hyperion-Essbase_Administration_Server Windows service is set to start automatically each time you reboot.

  • JSP Web Application State

    Hi there,
    I have a question regarding application state in a jsp web app. Can value be passed across different server like the use of cookie and session? If so what do I need to do? I'm current running the same web app on two different server because of an external plugins features that I'm using.
    ex: If I start at the main webpage on Server A and intial an application variable called "test = A" and then directed to a second page on Server B and try to change the same variable to say "Test = B", now when I go back to the initial page on Server A, I should see "Test = B" not "Test = A". But I'm seeing "Test = A", my initial guess is that there when my application move to a second page on a different Server it started up a new state which on the page on the second Server will recognize while Server A still retain the application initial state.
    So back to question, is it possible to have the same Application state run on two different Server? If so please provide me an example or a source to resolve this. Thanks for all you help.
    Alex

    Never mind, Just realize doing what I describe earlier will violate the web security standard.

  • How to run GINA when windows log off ?

    I test pGina program which was create from GINA. I want create program for logon windows with C#. I wonder when user log off windows why pGina can run application for login windows. I think application can run when start windows only . How pGina can run
    program when user click log off button ?

    Hi mmc01,
    I'm afraid you posted your question on the wrong forum. This forum is dedicated to Project Server concerns, the Microsoft enterprise scheduling & planning application.
    Please go to an appropriate forum in order to have an helpful hand.
    Cheers.
    Guillaume Rouyre - MBA, MCP, MCTS

  • Weblogic Prepared State but application is running fine

    One of our current production managed servers is in a 'Prepared' state, but the application is running fine.  We have kept it up for consecutive nights without restarting to experiment with how long it will run.  How can it be in a 'Prepared' state and still be running?  Will this prevent it from starting properly the next time we restart the server?

    Hi,
    Thanks. Tried finding any similar bug for WLS 9.2 but didn't get.
    there is a bug in WLS 10.3 but the scenario was different .
    Can it be application specific? because other applications on same managed server are showing state ACTIVE?
    I used a WLST command to check the state of applications (using getCurrentState() function )
    It gives the correct state as ACTIVE.
    Any Pointers will be appreciated.
    Thanks in Advance.

  • How to get to folder in /Library/Saved Application State/com.adobe.flashplayer.installmanager.savedState

    I have a file saved in a folder which according to a find ?/ -name "" search is located here /Library/Saved Application State/com.adobe.flashplayer.installmanager.saved
    But I can't browse through this folder structure in Finder (I have run command to allow me to see hidden folders if that is required).
    Please can someone help me to find out how to get to this file. It's an excel spreadsheet.
    Thank you

    When I try to save another excel file that I have also opened from a password protected zip file, the automatic folder selected is "wzQL.8t0UHS". When I try to save a file with exactly the same name as the file that is missing into the folder "wzQL.8t0UHS" it tells me that the file already exists and asks if I want to replace it.
    My assumption was therefore that it was some kind of cache where the file is intact.
    When I've done a search on the name of the file I am looking for in Finder, I do not find the file.

  • I get this error message: only a single instance of this application can run

    When I try to open my bank statement I get this message: only a single instance of this application can run.  Just wondering what that means,  and how do I open a file with adobe reader?

    Adobe Reader | Edit | Preferences | Security (Advanced)
    That is, start Adobe Reader.
    Chose Preferences from the Edit menu
    Look at the left hand side for Security (Advanced) and click on it
    Now look for the option to turn off Protected Mode.

Maybe you are looking for