Get-stat - disk for virtual machines on NFS data warehouses

Hi all

Through work for VMs on NFS data warehouses get-stat-disc?

$myVM | Get-stat - disc

Doesn't seem to work for VMs on NFS data warehouses, but that works for VMs on VMFS data warehouses.

After a presentation of VMware to http://webcache.googleusercontent.com/search?q=cache:h78Db7LqHcwJ:www.slideshare.net/vmwarecarter/powercli-workshop+%2Bget-stat+%2Bnfs & cd = 2 & hl = in & ct = Europeans & gl = at the & source = www.google.com.au

«WARNING: NFS performance statistics are not available (to come in a future version of vSphere).»

When these statistics are available for NFS data storage?

Kind regards

marc0

The answer is in the property of instance data that Get-Stat returns.

(1) get-Stat ==> canonical name of the LUN on which disk the hard

(2) get-Stat virtualdisk ==> The SCSI id of the virtual disk inside the VM

(3) get-Stat data store ==> the name of the data store

(1) you give statistics for view virtual machine i/o activity starting from the LUN. For a VM with several virtual disks on the same data store, this will display the total IO statistics. And it will also include i/o generated by another VM on the LUN as swap, Flash files related...

(2) gives statistics for 1 specific virtual disk of your virtual machine

(3) statistics of e/s of your VM to a specific data store. Interesting when you have a store of data with multiple extensions (multiple LUNS)

I hope that clarifies it a bit.

Tags: VMware

Similar Questions

  • Virtual machines on NFS data warehouses freeze when snapshots are deleted

    I'm running 3 ESXi 4.1 update 1 guest (essentials more license) with shared storage on a NetApp FAS2040 accessible via NFS. 5.2 PHD virtual is deployed for backups. Each time the backup is completed on a virtual machine and the snapshot is removed, the virtual machine in question freezes completely (not yet responding to pings) for 10 to 30 seconds. The issue is documented in the following VMware article:

    http://KB.VMware.com/selfservice/microsites/search.do?language=en_US & cmd = displayKC & externalId = 1031106

    However, while the article claims that the problem has been resolved in a fix, I persist it despite running on the last level of patch (build 433742). Is that all that I should have done after installing the latest patch? If the issue is not yet fixed, is there one solution other than to switch to iSCSI?

    According to Ko, the patch is ESXi 4.1 patch ESXi410-201104402-BG contains vmware-tools. One thing to try is maybe upgrade your vmware tools in the virtual machine? (I don't know if you have upgraded)

  • Get the list of virtual machines, storage of data and VMDK / path by cluster

    Hi people,

    as I m new to such things, I m wondering if someone already has a few scripts work to gather a list of all virtual machines, its corresponding data store (s) and the path to the files VMDK (or at least the name of it) - I know that this part has already been resolved - found a couple of them ;-)

    But my problem is, I need this script drilled down by Cluster Edition or Datacenter Edition. As I said I m completely new for this CLI stuff and Don t have any idea how to solve this problem...

    See you soon

    Markus

    Luke, you are right. I should have tested.

    There is a downside to the ForEach command that I almost never use. Normally I use the Foreach-Object cmdlet and that works very well with pipeing the output to Export-CSV.

    Markus, you must use option 2 in this case.

  • Need a script to list all virtual machines on specific data warehouses

    I am trying to find a way to list all virtual computers on specific data warehouses. I use vSphere 5.1 and so far I got this:

    Get-Datastore. where {$_ .name - like ' * XXX * ""} | Get - VM | Select name, @{N = "Datastore"; {E = {Get-Datastore - VM $_}} | Sort name | FT - one

    This kind of work, but it would be perfect if I got this:

    -Group data store

    -Unique virtual machines (VMS to report only to the data store where the VMX)

    Any help appreciated.

    I relied on the fact that the first in the list would be the data store that holds the VMX, which apparently is a misconception.

    Try like this

    Get-Datastore-Name ' * xxx *' |

    Get - VM | Select the name,

    @{N = "Datastore"; E={$_. {{ExtensionData.Config.Files.VmPathName.split ('[]') [1]}} |

    Tri-objet-property data store name |

    Format-Table - AutoSize

  • HELP - how to get the number of virtual machines on a data store?

    Looking at the inventory of the data store in the VI client, there are a "number of Virtual Machines:" according to the General information for the Summary tab... I'm looking for a script that retrieves this information for me...

    I started the script but I'm stuck... I am very new on this...

    Get-Datastore. WHERE-object {$_ .name - like "wlp" ' "} #this gives me all the data which are not local warehouses

    Could someone give an overview on how to script to retrieve the number of virtual machines on data warehouses...

    Thank you, Lee

    Sorry, something went wrong with the copy - paste

    Get-Datastore | where {$_.Name -like "vmfs*"} | Sort-Object -Property Name | %{$_ | select @{N="DSname"; E={$_.Name}},
                                                                          @{N="VMcount";E={($_ | Get-VM | Measure-Object).count}}}
    
  • How is it possible to clone a virtual machine cluster when data warehouses not presented in source and destination

    I did not know that on ESX 3.5, in order to afin de vivre live clone a virtual machine from one ESX host to another, source and destination stores had to be available. However, I'm currently cloning a virtual machine to a host in a datacenter and cluster to one host in a different data center, but the destination store is not available at the source host and visa versa.

    How is that possible?  This is a new feature of vSphere?

    That seems to work on the console port. See this thread: http://communities.vmware.com/message/1475721#1475721

    AWo

    VCP 3 & 4

    Author @ vmwire.net

    \[:o]===\[o:]

    = You want to have this ad as a ringtone on your mobile phone? =

    = Send 'Assignment' to 911 for only $999999,99! =

  • List virtual machines and their data warehouses

    I took a dagger to the list of all virtual machines in my VC with data warehouses where their VMDK:

    $report = @)

    $allvms = Get-VM

    {foreach ($vm to $allvms)

    $row = "" | Select VMNAME, DATASTORE

    $row. VMNAME = $vm.name

    {color: #ff0000} $row. DATA store = (Get - VM | get-data store)

    $report += $row

    }

    $report | Export-Csv "C:\vm_ds.csv" -NoTypeInformation

    No luck. I know that the problem is with the cndlet of get-data store, the file indicates the VMNAME column filled with virtual machines, as expected, but the column of report DATA store System.Object [].

    Any help would be appreciated.

    You are already in a loop through all the guests (the loop foreach in line 3), there is no need to get all customers with the cmdlet Get - VM (again) in the 6th line.

    You can just pass (i $vm) invites him to the cmdlet Get-data store on line

    System.Object [] entry in the CSV file is caused by the fact that the Export-CSV cmdlet does not know how to handle objects or arrays of objects.

    One solution is to loop through all the data store names that are returned.

    And keep the data store name in the property of the DATA store.

    The result is that there will be several rows in the CSV file to people with more than 1 data store.

    $report = @()
    
    $allvms = Get-VM
    foreach ($vm in $allvms) {
         $dstores = $vm | Get-Datastore
         foreach($ds in $dstores){
              $row = "" | select VMNAME, DATASTORE
              $row.VMNAME = $vm.name
              $row.DATASTORE = $ds.Name
              $report += $row
         }
    }
    
    $report | Export-Csv "C:\vm_ds.csv" -NoTypeInformation
    
  • How to use SMotion to move a virtual machine on two data warehouses


    Hello, I have a virtual machine that has two VD (VD1 and VD2) and they are on different data (DS1 and DS2) warehouses.  The OS is on VD1 and VD1 on DS1.  Data on VD2 and VD2 is on DS2.

    Is it possible to use SMotion to pass just VD1 of DS1 to anthers datastore (DS3) but leave VD2 on DS2?

    I tried to move, but I don't see an option to move just a VD.

    Any help will be appreciated, thanks in advance.

    I found the ADVANCED button on the section of storage of the migration wizard, see the screenshot below.  It allows you to individually select your locations of migration.

    Hope this helps someone.

  • ESXi host goes to the State and the virtual machine does not restart on other host does not

    Hi all

    I'm looking for a solution, in which case the host goes to the State and the virtual machine on it does not restart on a different host (they'll just gray) does not not what could be the problem here and how to fix it

    later when the failed host returns upward machines either go to motor off the coast of the State, or they show that under tension

    While the host is down or not responding do not I am able to ping the host ESXi (5.5) and able to ping the default gateway and the DNS servers of the host itself

    Yes AF, the answer to all these questions is Yes, it is a HA and DRS cluster active, I tried restarting mgmt service, we use a shared storage (storage iSCSI HP 3PAR and left hand)

  • Virtual MACHINE created on date export csv - get - vm testvm works but says testvm get-vmcreationdate is not found.

    Hello

    I entered the following two functions in my shell powercli

    Two functions I have installed

    function {Get-VMEvents

    < #.

    . Logbook

    Get events for an entity or query all events.

    . Description

    This function returns the events for the entities. It is very similar to

    cmdlet Get-vievent. Please note that get-VMEvent can handle 1 vm at a time.

    You can't send picture of vms in this version of the script.

    . Example of

    Get-VMEvents 0All-types "VmCreatedEvent", "VmDeployedEvent", "VmClonedEvent".

    He will receive all events of type "VmCreatedEvent", "VmDeployedEvent"

    'VmClonedEvent '.

    . Example of

    Get-VMEvents-name 'vm1' - type 'VmCreatedEvent '.

    Will be out of the events of creation of virtual machine: "vm1. It's faster than the vms piping is of

    result of Get - vm. There is no need to use get - vm to move names to get-vmevents.

    Yet, it is OK when you do, it will be just a little more slow < span class = "wp-smiley wp-emoji wp-emoji-blink of eye" title = ';') > ;) </span >

    . Example of

    Get-VMEvents-name 'vm1' - category 'WARNING '.

    Will be out all events for vm: 'vm1. It is is faster than the names of piping of

    cmdlet Get - vm. Category will get-vmevent to search only the defined category

    events.

    . Example of

    Get - vm "vm1 | Get-VMEvents-types "VmCreatedEvent", "VmMacAssignedEvent".

    Shows events for vm1 which will be regarding the events of creation,.

    and events when when / what mac address is assigned

    . VM parameter

    This setting is a unique string that represents the name of the vm. He expects this single vm name

    There in the virtual Center. Now in the first version of the script, it will only load a case

    where there is 1 instance of vm selected name. In the future it will load multiple as

    Well.

    . Types of parameters

    If none is specified, it will return all the events. If specified will return

    Only the events with selected types. For example: "VmCreatedEvent."

    "VmDeployedEvent", "VmMacAssignedEvent" "VmClonedEvent", etc...

    . Category of a parameter

    Possible categories are: warning, info, error. Please use this setting if you

    you want to filter events.

    . Setting all the

    If you need to set this parameter, so command queries all events

    Center Virtual Server virtual machines.

    . Notes

    NAME: VMEvents

    AUTHOR: Grzegorz Kulikowski

    LASTEDIT: 09/11/2012

    DOES NOT? #powercli @ irc.freenode.net

    . Link

    http://psvmware.WordPress.com

    # >

    (param

    [Parameter (ValueFromPipeline = $true)]

    [ValidatenotNullOrEmpty()]

    $VM,

    [String []] $variétés.

    [string] $category,

    [switch] $All

    )

    $si = get-view ServiceInstance

    $em is get-view $si. Content.EventManager

    $EventFilterSpec = new-Object VMware.Vim.EventFilterSpec

    $EventFilterSpec.Type = $types

    {if ($Category)}

    $EventFilterSpec.Category = $category

    }

    If {($VM)

    $EventFilterSpec.Entity = new-Object VMware.Vim.EventFilterSpecByEntity

    switch ($VM) {}

    {$_-is [VMware.Vim.VirtualMachine]} {$VMmoref = $vm.moref}

    {$_-is [VMware.VimAutomation.ViCore.Impl.V1.Inventory.VirtualMachineImpl]} {$VMmoref = $vm. ExtensionData.moref}

    default {$vmmoref = (get - view - ViewType virtualmachine-filter @{'name' = $VM}) .moref}

    }

    $EventFilterSpec.Entity.Entity = $vmmoref

    $em. QueryEvents ($EventFilterSpec)

    }

    If {($All)

    $em. QueryEvents ($EventFilterSpec)

    }

    }

    function get-vmcreationdate {}

    < #.

    . Logbook

    Gets if possible virtual machine created.

    . Description

    This function will return the object with information about the creation time, method, of months,.

    creator of particular virtual machine.

    VMname: SomeVM12

    Createduserid: 10/08/2012 11:48:18

    CreatedMonth: August

    CreationMethod: cloned

    Creator: office\greg

    This function displays NoEvent property in case when your VC do not

    more information on these specific events, or your vm events no longer have

    entries for the subject being created. If your VC data base has more tension date it is no longer possible

    you find this event.

    . Example of

    Get-VMCreationdate - VMnames 'my_vm1', 'My_otherVM '.

    This will return items that contain date information of creating virtual machines with names

    myvm1 and myvm2

    . Example of

    Get-VM-location 'Cluster1 | Get-VMCreationdate

    This will return items that contain information created for virtual machines that are

    Located in Cluster1

    . Example of

    Notice-EEG - viewtype virtualmachine - SearchRoot (get-datacenter "mydc") user.user | Get-VMCreationDate

    This will return items that contain information created for virtual machines that are

    located in the data center "mydc" container If you use this feature in an existing loop where you

    having the cmdlet get-view virtual machines, you can pass them via pipes or as a parameter VMnames.

    . Example of

    $report = get-cluster "cl-01' | Get-VMCreationdate

    $report | Export-csv c:\myreport.csv

    Stores all reported creationtimes object in the array $report variable and export the report to a csv file.

    You can also filter the report before you write in the csv file using select

    $report | Where-Object {$_.} {CreatedMonth - eq "October"} | Select VMName, CreatedMonth

    So that you see only the vms that have been created in October.

    . Example of

    Get-vmcreationdate - VMnames "my_vm1", testvm55

    WARNING: my_vm1 is not found, typo?

    VMname: testvm55

    Createduserid: 05/10/2012 14:24:03

    CreatedMonth: October

    CreationMethod: NewVM

    Creator: home\greg

    In case when you receive virtual machine that is not appropriate in the infrastructure of yor, a warning is displayed.

    You can always store the full text of the report in the $report variable, but it includes all the information on

    dates of creation of the missing vm. A warning always only for your information there is

    probably a typing mistake in the name of the virtual machine.

    . Parameter VMnames

    This parameter must contain objects of virtual machine or strings representing vm

    names. It is possible to supply this function wiith VM objects coming from get - vm or

    get - view.

    . Notes

    NAME: Get-VMCreationdate

    AUTHOR: Grzegorz Kulikowski

    LASTEDIT: 27/11/2012

    DOES NOT? #powercli @ irc.freenode.net

    . Link

    http://psvmware.WordPress.com

    # >

    (param

    [Parameter (ValueFromPipeline = $true, mandatory = $true)]

    [ValidateNotNullOrEmpty()]

    [Object []] $VMnames

    )

    {in process

    {foreach ($vm to $VMnames)

    $ReportedVM = "" | Select VMname Createduserid, CreatedMonth, CreationMethod, creator

    If ($CollectedEvent = $vm |) Get - VMEvents - types "VmBeingDeployedEvent", "VmRegisteredEvent", "VmClonedEvent", "VmBeingCreatedEvent" - ErrorAction SilentlyContinue)

    {

    If ($CollectedEvent.GetType ().) IsArray) {$CollectedEvent = $CollectedEvent |?} {{$_-is [vmware.vim.VmRegisteredEvent]}}

    $CollectedEventType = $CollectedEvent.gettype () .name

    $CollectedEventMonth = "{0: MMMM}" $CollectedEvent.CreatedTime f

    $CollectedEventCreationDate = $CollectedEvent.CreatedTime

    $CollectedEventCreator = $CollectedEvent.Username

    Switch ($CollectedEventType)

    {

    "VmClonedEvent" {$CreationMethod = "Cloned"}

    "VmRegisteredEvent" {$CreationMethod = "RegisteredFromVMX"}

    "VmBeingDeployedEvent" {$CreationMethod = "VmFromTemplate"}

    "VmBeingCreatedEvent" {$CreationMethod = "NewVM"}

    default value {$CreationMethod = 'Error'}

    }

    $ReportedVM.VMname = $CollectedEvent.vm.Name

    $ReportedVM.CreatedTime = $CollectedEventCreationDate

    $ReportedVM.CreatedMonth = $CollectedEventMonth

    $ReportedVM.CreationMethod = $CreationMethod

    $ReportedVM.Creator = $CollectedEventCreator

    } else {}

    If ($?) {

    If ($vm - is [VMware.Vim.VirtualMachine]) {$ReportedVM.VMname = $vm.name} else {$ReportedVM.VMname = $vm.} ToString()}

    $ReportedVM.CreatedTime = 'NoEvent.

    $ReportedVM.CreatedMonth = 'NoEvent.

    $ReportedVM.CreationMethod = 'NoEvent.

    $ReportedVM.Creator = 'NoEvent.

    } else {}

    $ReportedVM = $null

    Write-Warning "$VM is not found, typo?

    }

    }

    $ReportedVM

    }

    }

    }

    Now, if I use the first command

    Get - vm testvm

    I get a response of

    Name PowerState Num CPU MemoryGB

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

    Receiving TestVM 4 4,000

    But if I do

    Get-vmcreationdate testvm

    he responds with

    WARNING: testvm is not found. misspelling?

    I can't understand why he says this?

    What will be the final objective to query the server vcenter set and export a CSV of the creation of each day VM - is their an easier way to do it?

    I was intending to use

    get - vm | Get-VMCreationDate | Export-Csv-path "d:\\reports\vmcreationinventory.csv ".

    But at the present time, each unique virtual machine is indicating "is not found."

    Attached is an example with a virtual machine called gbvls

    Although you may be better communicate with the author of these functions, from what I can tell, it seems to indicate that none of the specified events were found for these virtual machines.

    You can check if there are targeted with the cmdlet Get-VIEvent ordinary events.

    If you can see events, there could be a problem with the Get-VMEvents function.

    $vmName = 'testvm '.

    $tgtEvents = "VmBeingDeployedEvent", "VmRegisteredEvent", "VmClonedEvent", "VmBeingCreatedEvent".

    $vm = get-VM-name $vmName

    Get-VIEvent-body $vm - MaxSamples ([int]: MaxValue) |

    Where {$tgtEvents - contains $_.} GetType(). Name}

  • Folder path as a VM property - for virtual machines in a paralytic

    Hello

    I used the new-viproperty of LucD script to create a folder for each virtual computer property in my inventory. It works perfectly well for virtual machines, but not for virtual machines in a paralytic as these do not have a 'record' in powercli property. they report a $null value.

    Would be much appreciated if someone can help me to modify this script so it creates a VM property for the VMS and VMs in a paralytic?

    http://www.lucd.info/2012/05/18/folder-by-path/

    01

    02

    03

    04

    05

    06

    07

    08

    09

    10

    11

    12

    13

    14

    15

    16

    17

    18

    19

    20

    21

    22

    23

    24

    25

    26

    27

    28

    New-VIProperty-Name'BlueFolderPath' -ObjectType 'VirtualMachine'-Value{

        param($vm)

        functionGet-ParentName{

            param($object)

            if($object.Folder){

                $blue= Get-ParentName$object.Folder

                $name= $object.Folder.Name

            }

            elseif($object.Parent -and$object.Parent.GetType().Name -like"Folder*"){

                $blue= Get-ParentName$object.Parent

                $name= $object.Parent.Name

            }

            elseif($object.ParentFolder){

                $blue= Get-ParentName$object.ParentFolder

                $name= $object.ParentFolder.Name

            }

            if("vm","Datacenters"-notcontains$name){

                $blue+ "/"+ $name

            }

            else{

                $blue

            }

        }

        (Get-ParentName$vm).Remove(0,1)

    }-Force| Out-Null

    Check if the new version works for you.

    New-VIProperty-name 'BlueFolderPath' - 'VirtualMachine' - value {ObjectType

    Param ($VM)

    Function Get-ParentName}

    Param ($Object)

    if($Object.) {Folder)

    $blue = get-ParentName $object. Folder

    $name = $object. Folder.Name

    }

    ElseIf($Object.) VApp) {}

    $blue = get-ParentName $object. VApp.ExtensionData.ParentFolder

    $name = $object. VApp.Name

    }

    ElseIf ($object - is [VMware.Vim.ManagedObjectReference]) {}

    $folder = get-VIObjectByVIView - MORef $object

    $blue = get-ParentName $folder. Parent

    $name = $folder. Name

    }

    ElseIf($Object.) Parent - and $object. Parent.GetType (). Name - as a ' file * ') {}

    $blue = get-ParentName $object. Parent

    $name = $object. Parent.Name

    }

    ElseIf($Object.) ParentFolder) {}

    $blue = get-ParentName $object. ParentFolder

    $name = $object. ParentFolder.Name

    }

    If ("vm", "Data centers" - notcontains $name) {}

    $blue + "/" + $name

    }

    else {}

    $blue

    }

    }

    (Get-ParentName $vm). Remove (0.1)

    } - Force | Out-Null

  • Help to get a list of virtual machines with switch network and name

    I'm trying to get a simple list of virtual machines on a single host and include their name and networkname.

    When I run this Get - vm | where {$_.} $host.name - eq "ESX.local"}, I get the virtual machines with their name.  When I run this Get-networkadapter - vm Get - vm | where {$_.} $host.name - eq "ESX.local"} I download news network with the name of the network, which is what im after. "  I want to combine these 2 commands and get vm name and network name in a csv.  The network name is the Group of ports, the VM is affected change settings for example, it could be vlan10 or what you named your group of ports in the switch DV.  I've attached a screenshot of the orders successfully.

    Hello, brisketx-

    You could do a little more efficiently by getting first the VMHost (s) that are of interest, then get their virtual machines and then using a computed property for the names of network for virtual machines.  As:

    Get-VMHost esx.local | Get-VM |    Select-Object Name, @{n="NetworkName"; e={(Get-NetworkAdapter -VM $_ | %{$_.NetworkName}) -join ","}}
    

    You can then, of course, lead to Export-Csv to write the data to a CSV file.  How does do for you?

  • How to remove the msg: "consolidation of disks of virtual machines is necessary."

    Hi all

    I implement vSphere 5, and I have the following message displayed in the vCenter (virtual machine Summary tab). Does anyone know how to remove the message without consolidating the snapshot?
    ----------------------------------------------------
    "Consolidation of disks of virtual machines is necessary."
    ----------------------------------------------------

    I think vCenter is detect the Delta for this virtual machine and warning me that I have to consolidate the snapshot. However, I do not want to consolidate the snapshot because the database is still running when the snapshot was taken, and there is a great chance that the data will be corrupt when I consolidate this delta disk file.

    I looked towards the top of the Knowledge Base, but it does not say how to stop the message without actually consolidate the snapshot.
    ----------------------------------------------------
    Instant KB:2003638 in vSphere consolidation 5
    http://KB.VMware.com/selfservice/microsites/search.do?language=en_US & cmd = displayKC & externalId = 2003638
    ----------------------------------------------------

    Thanks for you information in advance!

    < environment >

    -VMWare vSphere 5 ESXi
    -VMWare vSphere vCenter 5
    -NetApp storage

    the message will disappear as soon as snapshots are consolidated.  There is no way to remove the message otherwise.  Just think of it as a reminder that the snapshots should be engaged.

  • Use the diskette of esxi for virtual machines

    Hello
    I would like to set up a lab and I have hp g6 server but just with a single 600 GB sas disk
    is it possible to install esxi on it and also use it as a storage device for virtual machines on?
    I know that I can install esxi on a cool drive but if what I've said, it's possible I prefer to use that
    Thank you very much

    It's true.

  • Get the list of virtual machines on an ESX host specific and dumping of .csv in a specific format

    I have problems to find a way to get a list of virtual machines on an ESX host specific and then he dumped to a .csv in the following format

    I use the get-vmhost esxhostname | Get - vm

    but everyhting else after, it is where I am lost...  I think the closest I had been posting the output with a goofy header and format 'vm1, vm2, vm3 "...

    name

    computer 1 name

    computer 2 name

    name of the machine 3

    to use for later use.  Any help would be appreciated.

    You must use the Select-Object cmdlet to specify more precisely the properties you want.

    The Export-Csv doesn't know how to manage the virtual computer object.

    Something like that

    Get-vmhost esxhostname | Get - vm | Select name. Export Csv.\report.csv - NoTypeInformation - UseCulture

Maybe you are looking for

  • When and where can I get the beta version of firefox 31 ESR?

    The current beta is downloadable on http://www.mozilla.org/en-US/firefox/channel/#beta is v30.0b9, right? (if so, why not v31.09b?) (Also, my platform is Linux)

  • CAPICOM

    I have this program listed in my Add/Remove list.  It seems that I do not use it.  I do not develop all graphics programs or create web pages.  I can remove it with Add/Remove. Don Jacobs

  • START ME UP blackBerry smartphones / restart App / apps?

    Marvin here with a Curve 8530... I downloaded the app restart Start Me Up to restart apps that do restart not sure they're own after rebooting. QUESTION: How do I know which applications need to be restarted after a reboot or a restart? Note: I read

  • MCU 8510 - TMS - SX10 (SIP only)

    Hi all I have a question where we have a new SX10 which I added to the MSDS and can make calls to a fine. However when I add it to a conference using the MCU it tells me that the connections settings will change, then deletes all the connections in t

  • File size too big after you import a GIF file

    I added a gif to the flash library and then saved the file. The .fla file emerged as 370 MB. Any reasons and ways to repair?