Need help to export results to csv format script

Hi guys,.

Need help, export results to csv can someone help me. Thank you.

Connect-VIServer test

$cluster = 'test '.

$clustername = get-cluster $cluster

$Clusters = get-View - ViewType ComputeResource |? Name - as $clustername.name

$Clusters | % {

$Cluste = $_

$VMHostsView = $null

$VMHostsView = get-view $Cluste.Host - name, Hardware Config, property

$VMss = $clustername | Get - VM

$HostCount = ($VMHostsView |) Measure - Object). County

$VMCount = 0 + ($VMss |) Measure - Object). County

$VMsPerHost = [math]: round (($VMCount/$HostCount), 1).

$vCPU = 0 + ($VMss: measure-object-sum - NumCPU property). Sum

$allocatedram = 0 + ($VMss: measure-object-sum - memorygb property). Sum

$avgrampervm = [math]: round (($allocatedram/$VMCount), 1).

$pCPUSocket = ($VMHostsView | % {$_.}) Hardware.CPUInfo.NumCpuPackages} | Measure - Object - sum). Sum

$TpCPUSocket += $pCPUSocket

$pCPUCore = ($VMHostsView | % {$_.}) Hardware.CPUInfo.NumCpuCores} | Measure - Object - sum). Sum

$vCPUPerpCPUCore = [math]: round (($vCPU/$pCPUCore), 1).

$onenode = [math]: tour ((Get-Cluster $cluster |)) Get-VMHost | Select - 1 first | (measure - object - property memorytotalGB-sum) .sum)

$twonode = [math]: tour ((Get-Cluster $cluster |)) Get-VMHost | Select - first 2 | (measure - object - property memorytotalGB-sum) .sum)

$onenodepcpucores = [math]: tour ((Get-Cluster $cluster |)) Get-VMHost | Select - 1 first | (measure - object - property numcpu-sum) .sum)

$twonodepcpucores = [math]: tour ((Get-Cluster $cluster |)) Get-VMHost | Select - first 2 | (measure - object - property numcpu-sum) .sum)

$totalclusterpcores_failover1 = $pcpucore - $onenodepcpucores

$totalclusterpcores_failover2 = $pcpucore - $twonodepcpucores

$TotalClusterRAMGB = [math]: tour ((Get-cluster $cluster | get-vmhost | % {$_} | mesure-objet-propriété memorytotalGB-somme) .sum)

$TotalClusterRAMFailoverOne = [math]: round (($TotalClusterRAMGB-$onenode))

$TotalClusterRAMFailvoerTwo = [math]: round (($TotalClusterRAMGB-$twonode))

$TotalClusterRAMusageGB = [math]: tour ((Get-cluster $cluster | get-vmhost | % {$_} | mesure-objet-propriété memoryusageGB-somme) .sum)

$TotalClusterRAMUsagePercent = [math]: round (($TotalClusterRAMusageGB/$TotalClusterRAMGB) * 100)

$TotalClusterRAMFreeGB = [math]: round (($TotalClusterRAMGB - $TotalClusterRAMUsageGB))

$TotalClusterRAMReservedGB = [math]: round (($TotalClusterRAMGB/100) * 15)

$TotalClusterRAMAvailable = [math]: round (($TotalClusterRAMFreeGB - $TotalClusterRAMReservedGB))

$TotalClusterRAMAvailable_FailoverOne = [math]: round (($TotalClusterRAMAvailable-$onenode))

$TotalClusterRAMAvailable_failoverTwo = [math]: round (($TotalClusterRAMAvailable-$twonode))

$TotalClustervcpuperpcore_FailoverOne = [math]: round (($vCPU/$totalclusterpcores_failover1), 2)

$TotalClustervcpuperpcore_failoverTwo = [math]: round (($vCPU/$totalclusterpcores_failover2), 2)

$newvmcount = [math]: round (($TotalClusterRAMAvailable/$avgrampervm))

$newvmcount_failover1 = [math]: round (($TotalClusterRAMAvailable_failoverone/$avgrampervm))

$newvmcount_failover2 = [math]: round (($TotalClusterRAMAvailable_failovertwo/$avgrampervm))

$afternewvmvcpu1 = $vcpu + $newvmcount

$afternewvmvcpu2 = $afternewvmvcpu1 + $newvmcount

$new1vcpupcpuratio = [math]: round (($afternewvmvcpu1/$pCPUCore), 1).

$new2vcpupcpuratio = [math]: round (($afternewvmvcpu2/$pCPUCore), 1).

New-Object PSObject |

Add-Member-pass NoteProperty 'NOMCLUSTER' $clustername.name |

Add-Member-pass NoteProperty 'TotalClusterHostCount' $HostCount |

Add-Member-pass NoteProperty 'TotalClusterVMCount' $VMCount |

Add-Member-pass NoteProperty "of AverageVM / Host" $VMsPerHost |

Add-Member-pass NoteProperty 'TotalClusterpCPUSocket' $TpCPUSocket |

Add-Member-pass NoteProperty 'TotalClusterpCPUCore' $pCPUCore |

Add-Member-pass NoteProperty 'TotalClustervCPUCount' $VCPU |

Add-Member-pass NoteProperty ' TotalClustervCPU/pCPUCore' $vcpuperpcpucore |

Add-Member-pass NoteProperty "TotalClustervCPU/pCPUCore after 1 failover" $TotalClustervcpuperpcore_FailoverOne |

Add-Member-pass NoteProperty ' TotalClustervCPU/pCPUCore after Failvoer 2' $TotalClustervcpuperpcore_Failovertwo |

Add-Member-pass NoteProperty 'TotalClusterRAMGB' $TotalClusterRAMGB |

Add-Member-pass NoteProperty 'TotalClusterRAMGB_Failover1' $TotalClusterRAMFailoverOne |

Add-Member-pass NoteProperty 'TotalClusterRAMGB_failover2' $TotalClusterRAMFailvoerTwo |

Add-Member-pass NoteProperty 'TotalClusterRAMUSAGEPercent' $TotalClusterRAMUsagePercent |

Add-Member-pass NoteProperty 'TotalClusterRAMUsageGB' $TotalClusterRAMusageGB |

Add-Member-pass NoteProperty 'TotalClusterRAMFreeGB' $TotalClusterRAMfreeGB |

Add-Member-pass NoteProperty 'TotalClusterRAMReservedGB(15%) '. "$TotalClusterRAMReservedGB |

Add-Member-pass NoteProperty 'RAM available for NEW virtual machines in GB' $TotalClusterRAMAvailable |

Add-Member-pass NoteProperty 'RAM available for NEW virtual machines in GB after 1 failover' $TotalClusterRAMAvailable_FailoverOne |

Add-Member-pass NoteProperty 'RAM available for NEW virtual machines in GB after failover 2' $TotalClusterRAMAvailable_FailoverTwo |

Add-Member-pass NoteProperty 'Allocated RAM by virtual computer on an average' $avgrampervm |

Add-Member-pass NoteProperty 'NEW virtual machines that can be configured based on the average of RAM virtual computer' $newvmcount |

Add-Member-pass NoteProperty 'NEW virtual machines that can be configured based on the average of RAM virtual computer after 1 failover' $newvmcount_failover1 |

Add-Member-pass NoteProperty 'NEW virtual machine that can be provisioned littleboy average RAM per virtual computer after failover 2' $newvmcount_failover2 |

Add-Member-pass NoteProperty "vCPU/pCore ratio after new VM provisioning with 1vcpu" $new1vcpupcpuratio |

Add-Member-pass NoteProperty ' vCPU/pCore ratio after new VM provisioning with 2vcpu' $new2vcpupcpuratio

}

Get-cluster $cluster | Get-vmhost | % {

$vmhost = $_

$VMHostView = $VMHost | Get-View

$VMHostModel = ($VMHostsView | % {$_.}) Hardware.SystemInfo} | Model object-group | Sort - down County | Select - 1 first). Name

$VMs = $VMHost | Get - VM #|? { $_. PowerState - eq "Receptor"}

$TotalRAMGB = [math]: round ($vmhost. MemoryTotalGB)

$TotalRAMUsageGB = [math]: round ($vmhost. MemoryUsageGB)

$TotalRAMfreeGB = [math]: round ($TotalRAMGB - $TotalRAMUsageGB)

$PercRAMUsed = [math]: round (($TotalRAMUsageGB/$TotalRAMGB) * 100)

$TotalRAMReservedFree = [math]: round (($TotalRAMGB/100) * 15)

$TotalRAMAvailable = [math]: round (($TotalRAMfreegb-$totalramreservedfree))

New-Object PSObject |

Add-Member-pass NoteProperty 'VMhost' $vmhost. Name |

Add-Member-pass NoteProperty model $vmhostmodel |

Add-Member-pass NoteProperty Sockets $VMHostView.Hardware.cpuinfo.NumCPUPackages |

Add-Member-pass NoteProperty Cores $VMHostView.Hardware.cpuinfo.NumCPUCores |

Add-Member-pass NoteProperty son $VMHostView.Hardware.cpuinfo.NumCPUThreads |

Add-Member-pass NoteProperty VMCount (($VMs | mesure-objet).) County) |

Add-Member-pass NoteProperty vCPU (0 + ($VMs: measure-object-NumCPU of the sum).) Sum).

Add-Member-pass NoteProperty vCPUperCore ((0 + ($VMs | mesure-objet-NumCPU de la somme).)) Sum)/$VMHostView.hardware.cpuinfo.NumCPUCores) |

Add-Member-pass NoteProperty 'RAMGB' $TotalRAMGB |

Add-Member-pass NoteProperty 'RAMUsageGB' $totalramusageGB |

Add-Member-pass NoteProperty 'RAMFreeGB' $totalramfreeGB |

Add-Member-pass NoteProperty 'RAMUsage %' $PercRAMused |

Add-Member-pass NoteProperty 'RAMReservedGB(15%) '. "$totalramreservedfree |

Add-Member-pass NoteProperty 'RAM available for NEW virtual machines in GB' $totalramavailable

}| Sort VMhost | FT-auto * | Out-String-width 1024

See the attached script

Tags: VMware

Similar Questions

  • Need help to export files in Jpeg format for printing

    I'm quite new to this, so any help would be appreciated. I use Lightroom 3 and need to export files in Jpeg format to put on Smugmug for printing. My understanding is that I put 300 PPI, in measuring the "size to fit" and the width and the height, I'm a bit confused. I'm trying to find my size of the original file that I can't find if I can put it in the right dimensions for export. My problem is that I want to export by batch and I need a way where I can export there will be minimum smugmug in culture when people are going to buy prints. I'm looking for the best image quality for printing without losing parts of the image due to the size of the file. Thank you very much!

    The size of the image are in the metadata Panel of the library Module.

    If you want to allow people of the same image to print sizes, then they will have to crop the image to the right size on Smugmug. There is no way to avoid it. I know that you said you don't want to crop the images, people, but users MUST make a crop so that the image has the same proportions as the print size.

    Similarly, if you want to allow people to print 4 x 6 or 11 x 17 or any other standard size, then you must provide as many pixels as possible. You can not, to your computer in Lightroom, choose settings that match all of these possibilities.

    So, again, I recommend that you download the whole photo, without culture and without resizing to the default PPP. Nothing else will not provide the end user the flexibility to print in different sizes.

  • Need help to export images in tiff format

    Hello

    I try to export my PDF to Acrobat Pro files in the tiff at 400 pixels per inch images. When I go into the settings for the export of a tiff file, it does not give me the 400 pixels per inch option. Theres is 300 and 600.etc... UT not 400. Anyone know how or if I can do this? I need to submit a plan to a national of the DOWRY and they need the tiff images by this resolution. Help!

    Select 300 and 300 to 400 to change.

  • I need help, convert a PDF to word format. I bought Acrobat for it?

    I need help to use this download. I bought Acrobat because I need to convert a PDF to word format. Can you give me instructions on how to do it.

    Thank you

    Open the file in Acrobat, use the file--> save money...--> Microsoft Word.

    Mylenium

  • Need help for export to 1080 p 60 fps into 14 components (the video is silent)

    I just bought 14 items two days before, so I'm incredibly at this news. In which case it is important, I run 64 bit Windows 10.

    So, I create a 3D animation in MMD (MikuMikuDance), a program of 3D animation to be animated music videos.

    Following another problem with MMD, if I want to make the animation to superior qualities, I need to make it into pieces - if it's 1080 p 60 fps, then the pieces is executives from 1999. Once it restores a 2000th image without taking a break, the program crashes. For the same reasons, I can't use the audio in the original clip, so I need to add it separately.

    So, I use editing programs to combine these pieces and audio into a single file, I can then save on my hard drive and download on various websites. That's what my edit looks like so:

    Elements Timeline.png

    When I tried to export the file to MP4, I discovered that there is no integrated adjustment for export to 1080 p 60 fps; I could do 720 p 60 fps or 1080 p 30 fps, but 1080 p 60 fps was not an option. I decided to customize a setting for 1080 p 60 fps, but when I watched the videos, it was 1080 p 60 fps, but it is also completely silent, with no sound whatsoever. At first, I wondered if it was just a fluke and it made again. He was still silent. I restarted my computer, and left the computer alone while it has made, but he was still silent.

    A test, I used the setting for 1080 p 30 fps, and while it was not the quality I wanted, the audio worked well in this one. So, the problem - I guess - is with my fps setting custom 1080 p 60. If it works on an integrated framework, but not a customize one, then this is the only conclusion I can come to.

    Here is a series of screenshots showing my custom setting:

    Elements Export.png

    Because you can't see it all, the name of the preset is "MP4 - H264 1920 x 1080 p 60 fps 15Mbps Medium ' (I just changed pre-set at 60 fps 1080 p and reflects by changing the 30 in the title to 60; "I do not understand most of the title); and in case it is too small to see, the custom settings are:

    Resolution: 1920 x 1080

    Format: H.264

    Frame rate: 60

    Audio: MPEG, 160 kbps, 48 kHz, stereo

    Lasted: 3 minutes, 34.34 seconds

    Flow: 15 MB/s

    Now, here's the complete list of parameters for the screening:

    Elements Export Settings.png

    Elements Advanced Settings.png

    Elements Audio.png

    Elements Multiplexer.png

    So, which-if whatever this is-am I hurt? Should I change the bitrate or something?

    Try to set your audio Dolby Digital instead.

    But a lot depends on a lot.

    I don't have "everything about the specs of the MMD video that you use in your project, but which could also be a factor in this problem."

    And so couldn't your video settings, personalized 1920x1080p60 MP4, which can not be in the capacity of the program.

    And no matter what video player you play your MP4 on. Unless you use a good versatile player like VLC Media Player, you don't hear no audio from your video could be due more to the media player as the audio file itself.

  • Need to convert PDF statement in CSV format, but not sure about adobe products online...

    Need to convert PDFs bank statements to csv files. Adobe has a desktop version of Acrobat yet who can do?

    The capability still exists. Using selection tool of Acrobat DC to select content. Right-click to display the context menu. Select "export selection as.
    In the presentation window using 'save' the ' Save as type: "menu drop-down and select CSV.

    Be well...

  • Beginner to printing needs help on exporting files

    Hello

    I've been shooting photography years but have never really printed one of my photos. I am now interested in some of my images print on canvas using Costco. I have so many questions, it's not even funny. I would appreciate help in the understanding of the whole process.

    Here is some background info:

    Camera used: Sony a700 (12 MP)

    Software used: Adobe Lightroom 3.x

    Here are my questions:

    (1) in view of my camera, what realistic size paper print to? I would like to print some 24 x 36 canvas (although I think that the closest Costco size is 20 x 30). It's all just too big?

    (2) am I supposed to resize the image, and if so, should I put it in the same size as the paper I want to print to?

    (3) should I leave "do not expand" button unchecked and what ppp parameters?

    (4) should I use the option to output sharpening, and if so, what options for canvas print?

    (5) is not that I know how it works, but does not offer Lightroom proofing. How can I tell how far the impression will be how it appears on my calibrated monitor?

    I'm more confused by the "Sizing of the Image" section in the Lightroom export function. I've seen suggestions do not resize and others said the opposite. Situations in which you would like to resize? I tried three different situations of resizing:

    (1) no resizing

    (2) resizing to the exact dimensions of the canvas that I want to print (20 "x 30") and clicking on the button "do not expand.

    (3) resizing to the exact dimensions of the canvas that I want to print (20 "x 30") with "do not expand the ' unchecked

    The two first exported JPEG were identical, but the third was much larger (20MB file vs 7.3 MB for the other two). How would be treated two different file sizes when printing?

    A lot of questions, and some would require better Costco!

    (1) for good quality prints at least 240 DPI (Pixels per inch) resolution, you should better be 300 ppi. To get the maximum print size you can do without the magnification of the picture you simply divide the pixels that offers your camera by 240 (or 300 as the case may be) and get the max size in inches. For example: If an image gets out a camera with 3000 x 2000 pixels and you want 300 ppi print you will get a maximum of 10 "x 6.67" print. 240 DPI you would get 12.5 "x 8.33". If you want a print bigger that, and you can't go lower in the ppi, you will need to enlarge the photo.

    I don't know what resolution print Costco wants, you need to ask them.

    (2) you must resize the image, unless Costco would do this - ask them. But I'd do it myself. For resizing, you choose the dimension of the image itself, not the size of the paper/canvas. So, if you want an 8 "x 10" print on paper letter (8.5 x 11) you would resize your image to 8 x 10. Only if you print without borders image size is equal to the size of the paper.

    (3) If you need to enlarge your image to get the print size you want (see above), you must leave the key unchecked. If you have the print sizes equal or less than that of the image file, the button does nothing. If you want a sense of the size 24 x 36 you must enlarge your image, then so do not check or you do not get the size you need.

    (4) I don't know. Ask at Costco if they do any sharpening. I guess. Sharpening for print on canvas is probably not too critical because the roughness of the surface of the canvas will be a non-affutage effect. I would start with and .

    (5) Costco prints probably sRGB (I guess), so it's a good idea to export your images as sRGB. If you do not have Photoshop for ever you can only guess. My advice: don't go overboard with the saturation / intensity. If you have Photoshop softproof it there before sending it.

    Finally: Why not let you do a small print first and see how sharpness and colors work out?

    WW

  • Need help to export a header with slices to a web page

    I used Fireworkds CS3 to create a header for my web page. I used brackets insert links in the header.

    the problem is now I can not understand how to insert this header in my web page so that the URL still works...

    I see instructions anywhere on the web to export an entire web page in Fireworks, but can not make you an article as a header?

    I really didn't want to do the whole thing in Fireworks.

    Thank you

    H

    What I would do is the bracket to the top of the header only image and use that as a background image, called via a style sheet for the background of the header div.  Create text links in Dreamweaver (or your editor of choice if you are not using DW).

    Much better option :-)

    This tutorial can help you on the road to export only the images you need and then building the page in your html editor:

    FIREWORKS INTO COMP TO DREAMWEAVER:

    http://www.Adobe.com/devnet/Dreamweaver/articles/dw_fw_css_pt1.html

    --

    Nadia

    Adobe® Expert community: Dreamweaver

    http://www.perrelink.com.au

    --------------------------------------------------------------------------

    Unique templates CSS | Tutorials | SEO articles

    http://www.DreamweaverResources.com

    --------------------------------------------------------------------------

    http://Twitter.com/nadiap

  • Need help understanding checksur results!

    I downloaded System Update Readiness Tool and looked at my results and he said that he found 8 errors and has listed them under "unavailable repair files." How can I fix it! Here are my results... Help, please! I use a windows vista Home premium sp2 64-bit

    Preparation of control system was updated.
    Binary version 6.0.6002.22574
    Version of the package 15.0
    2012-09-14 22:59

    Checking Windows Service Packages

    Checking of manifests package and catalogs

    Checking package Watchlist

    Watchlist checking

    Checking packages

    Control components store
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6002.22514_en - us_e1fd3ac7506c5922.manifest amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6002.22514_en - us_e1fd3ac7506c5922
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6001.22787_none_71a01ccedb47a1b6.manifest amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6001.22787_none_71a01ccedb47a1b6
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6001.18547_none_7141bdcdc2099501.manifest amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6001.18547_none_7141bdcdc2099501
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6001.18547_en - us_df6fb9623a3e09be.manifest amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6001.18547_en - us_df6fb9623a3e09be
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6001.22787_en - us_dfce1863537c1673.manifest amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6001.22787_en - us_dfce1863537c1673
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6002.18336_en - us_e15ffcd2375d26c1.manifest amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6002.18336_en - us_e15ffcd2375d26c1
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6002.18336_none_7332013dbf28b204.manifest amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6002.18336_none_7332013dbf28b204
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6002.22514_none_73cf3f32d837e465.manifest amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6002.22514_none_73cf3f32d837e465

    Summary:
    Seconds executed: 1406
    Found 8 errors
    County CSI shows all zeros Total: 8

    Unavailable repair files:
    winsxs\manifests\amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6002.22514_en - us_e1fd3ac7506c5922.manifest
    winsxs\manifests\amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6001.22787_none_71a01ccedb47a1b6.manifest
    winsxs\manifests\amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6001.18547_none_7141bdcdc2099501.manifest
    winsxs\manifests\amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6001.18547_en - us_df6fb9623a3e09be.manifest
    winsxs\manifests\amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6001.22787_en - us_dfce1863537c1673.manifest
    winsxs\manifests\amd64_microsoft-windows-i... TimeZones.resources_31bf3856ad364e35_6.0.6002.18336_en - us_e15ffcd2375d26c1.manifest
    winsxs\manifests\amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6002.18336_none_7332013dbf28b204.manifest
    winsxs\manifests\amd64_microsoft-windows-i... Intern - timezones_31bf3856ad364e35_6.0.6002.22514_none_73cf3f32d837e465.manifest

    Customer experience report downloaded successfully.  Thank you for your participation.  For more information, see the Microsoft Customer Experience Improvement Program on the Microsoft web site.

    Hello

    Check out these links:
    How to fix the errors found in the CheckSUR.log:
    http://support.Microsoft.com/kb/2700601
    Note: This is applicable to Windows Vista also.
    Guidelines for diagnosing and servicing of fixing corruption:

    http://TechNet.Microsoft.com/en-us/library/ee619779 (v = ws.10) .aspx
    I hope this helps!
  • Need help with export of Bank to the sunset of MS Money.

    I can't export my bank transactions in Sunset MS Money?

    This allows to work with MS Money.

    I now MS Money sunset and Windows 7 IE9. a pop up asking if I want to save download or save as. BUT does not save.

    Any help would be appreciated

    Hi H.Johns,

    The question you posted would be better suited in the Microsoft Money Forums. I would recommend posting your query in the Forums of Money.

     

    Microsoft Money Forum

    http://social.Microsoft.com/forums/is/money/threads

    I hope this helps.

  • Need help, cannot export a pdf from indesign cs5

    Hello I used indesign several times so that exported this work in 2015, I've updated this 36 page book this year and I can't export the pdf file, I get no error, the background window does not move, I have every time to leave indesign, I can export indd. as jpg but not my indesign file in a pdf print ready, any ideas? I don't do anything different than normal (I think), thank you so much Cindy

    What happens with any document or just this one?

    Here is another approach:

    Gather all your linked files and fonts help

    file-> package.

    and save it to another drive.

    Frome, open the indd file in the folder of the package and try to export PDFs.

    Let us know if it works

  • Need help on the results of a bizarre query...

    Hi guys,.

    I need your help

    Requirement is:-suppose we have under titles in a single table;

    HULK
    THE INCREDIBLE HULK - 2001 (DO NOT USE)
    INVERSE OF HULK
    INCREDIBLE HULK U/A
    BRING ME THE HEAD OF THE INCREDIBLE HULK
    JENNIFER JASON LEIGH, HULK HOGAN
    HULK 2
    BRIDE OF THE INCREDIBLE HULK
    HULK HOGAN, DAVID WILLEY, NATASHA BEDINGFIELD
    THE INCREDIBLE HULK #03 (1979/80)
    HULK HOGAN CELEBRITY CHAMPIONSHIP WRESTLING #01 (2008/09)


    Now, he must: -.

    O/p should be below order without duplicate records

    HULK first, then

    HULK then %

    HULK %.


    O/p: -.


    HULK
    HULK 2
    HULK HOGAN, DAVID WILLEY, NATASHA BEDINGFIELD
    HULK HOGAN CELEBRITY CHAMPIONSHIP WRESTLING #01 (2008/09)
    THE INCREDIBLE HULK - 2001 (DO NOT USE)
    INVERSE OF HULK
    INCREDIBLE HULK U/A
    BRING ME THE HEAD OF THE INCREDIBLE HULK
    JENNIFER JASON LEIGH, HULK HOGAN
    BRIDE OF THE INCREDIBLE HULK
    THE INCREDIBLE HULK #03 (1979/80)


    How can do us using sql query? Is it possible to make a request?
    Or to do table PL/SQL etc.?

    There should be no duplicates if you use more than a query or a single query.
    Can you help me?

    tappusingh wrote:

    O/p should be below order without duplicate records

    HULK first, then

    HULK then %

    HULK %.

    Maybe something like:

    SQL> WITH test_tab
      2         AS (SELECT   'HULK' col FROM DUAL
      3             UNION ALL
      4             SELECT   'THE INCREDIBLE HULK - 2001 (DO NOT USE)' FROM DUAL
      5             UNION ALL
      6             SELECT   'REVERSE HULK' FROM DUAL
      7             UNION ALL
      8             SELECT   'INCREDIBLE HULK U/A' FROM DUAL
      9             UNION ALL
     10             SELECT   'BRING ME HEAD OF THE HULK' FROM DUAL
     11             UNION ALL
     12             SELECT   'JENNIFER JASON LEIGH, HULK HOGAN' FROM DUAL
     13             UNION ALL
     14             SELECT   'HULK 2' FROM DUAL
     15             UNION ALL
     16             SELECT   'BRIDE OF THE INCREDIBLE HULK' FROM DUAL
     17             UNION ALL
     18             SELECT   'HULK HOGAN, DAVID WILLEY, NATASHA BEDINGFIELD' FROM DUAL
     19             UNION ALL
     20             SELECT   'INCREDIBLE HULK #03 (1979/80)' FROM DUAL
     21             UNION ALL
     22             SELECT   'HULK HOGAN''S CELEBRITY CHAMPIONSHIP WRESTLING #01 (2008/09)'
     23               FROM   DUAL)
     24    -- " end of test data "
     25    SELECT   DISTINCT col
     26      FROM   test_tab
     27  ORDER BY   CASE
     28                WHEN col = 'HULK' THEN 1
     29                WHEN col LIKE 'HULK%' THEN 2
     30                WHEN col LIKE '%HULK%' THEN 3
     31                ELSE 4
     32             END, col
     33  /
    
    COL
    -----------------------------------------------------------
    HULK
    HULK 2
    HULK HOGAN'S CELEBRITY CHAMPIONSHIP WRESTLING #01 (2008/09)
    HULK HOGAN, DAVID WILLEY, NATASHA BEDINGFIELD
    BRIDE OF THE INCREDIBLE HULK
    BRING ME HEAD OF THE HULK
    INCREDIBLE HULK #03 (1979/80)
    INCREDIBLE HULK U/A
    JENNIFER JASON LEIGH, HULK HOGAN
    REVERSE HULK
    THE INCREDIBLE HULK - 2001 (DO NOT USE)
    
    11 rows selected.
    
    SQL>
    

    Kind regards
    JO

  • Pavilion Elite HPE-170 t: need help with the result of a command prompt to Power Options

    I have recently upgraded to Windows 10 in Windows 7.  Like so many thousands of people, I problelms of sleep mode.  Mine will not be auto-sleep.  It has been suggested that I saw to run command prompt: powercfg-applications

    It supposedly will list the items running on your computer which can now be auto-sleep to work.  I tried several times and up to now, I get the same item displayed each time.  This is what is displayed: \device\harddiskvolume2\windows\sysWOW64\svchost.exe (hpqddsvc) is followed by this message: a file delete operation is underway

    My first thought is that if there is an operation to remove file in progress all the time, it's maybe the reason why my computer is not auto-sleep.  If there is someone out there who can shed some light on this situation, I would appreciate the help.

    EUREKA * SOLVED

    I found the answer to my problem!  After using the control system: powercfg-query and get the answer: \device\harddiskvolume2\windows\sysWOW64\svchost.exe (hpqddsvc) delete file operation is in progress

    I started looking for whatever it is associated with the answer above.  In the Manager of tasks in respect of the services, I found the name of the file hpqddsvc, with a description of HP CUE DeviceDiscovery Service was running.  When I stopped the task and re-tried in opt power standby mode, it worked correctly.  In the Configuration of the system (by typing msconfig at the run prompt) on the Services tab, I unchecked the box for HP CUE DeviceDiscovery Service and rebooted the computer.  The service is no longer running.

    I'm sure that this Service has been added to my computer when I downloaded the hp.com/support product detection tool .  The tool scans your computer to detect and identify HP products.

    This can be useful to others who have the problem of the auto-sleep I've had.

  • I need help with installing XP after re format! Help, please!

    I would like to reformat my computer, a dell I bought 6 years ago. I have the re XP install disc and key code, but the disc is totally destroyed! How can I re install my xp with service plack 1 without the cd?

    You will need to borrow a comparable CD of a person, or perhaps you contact Dell and hope they are in a benevolent mood.

    Good luck.

  • Need help with export

    Hello! I ve tried the trial version now and I ve made a video, you have to buy the full version to export the video to the media or there at - it another way, that I can do with the trial while it s still of time? And if I have can´t and buy the full version, this is my rest video yet?

    I think that most of the export options should work in the trial.  H.265 will not, but others should.

    Purchase will not delete your work.  It allows you simply to continue working after 30 days.

Maybe you are looking for

  • Mouse right click flash Menus and are hard to read

    I use Windows 7 and on FF 14.0.1.Basically, I'm having exactly the same problem what is described here: https://support.Mozilla.org/en-us/questions/753329?as=AAQ When I right click on the menus, or when I go into the menu of Firefox, the menu is limi

  • Where to buy NB550 - 10G (blue)

    Hello I am buying the NB550D-10, but the only place where I can find it is in Askdirect.com, they want to charge me £20.00 for delivery, I live in N.Ireland and it is too much for the delivery, is there anywhere else I can order leave also I don't li

  • NET 10 W377g becomes hot during charging or when accused close to battery.

    My W377g 10 Net is really hot when plugged in to recharge. Also, it gets very hot after I charge a battery in another phone, then put it in the W 377 g. Could it blow up, what can I do?

  • Regular expression matching receives only two digit in brackets

    Hello I use the regular expression of the correspondence with the following expression. It is only able to get all the numbers that are not mere numbers. I want to retrieve all the values which lie between >< in="" the="" string="" and="" create="" a

  • HP Deskjet Ink Advantage 3545: Results of the analysis of the Palm of the hand

    I'm trying to analyze the Palm of the hand for the purposes of astrology. I'm scanning from laptop to the printer. When I use the color and grayscale options, the image just right with light background of my palm and dark and distinguished lines area