Create subfolder under virtual & model computers

I like the script to create folders for Virtual Machines and the model display. To the i in this moment completely chaos.

This code makes it easy as a starting point.

http://communities.VMware.com/message/1107441#1107441

But if I create subfolders that whenever the message folder already exists appears as a red event.

root folder / sub-folder / under file / under folder / sub-folder

Main record office

DC/location/environment/infrastructure/desktop/departments01

Server main folder

DC/location/environment/infrastructure/server/departments01

DC/location/environment/infrastructure/server/departments02

DC/location/environment/infrastructure/server/departments03

DC/location/environment/infrastructure/server/departments04

I did a PowerCLI-New-BlueFolderByPath function, allowing you to create folders for you. You must specify the path to the full in the service folder, as you can see in the example. The function will create all the folders (sub-) that do not already exist.

function New-BlueFolderByPath {
<#
.SYNOPSIS
    Creates a new blue folder in the Virtual Machines & Template View
.DESCRIPTION
    Creates a new blue folder in the Virtual Machines & Template View
.PARAMETER Path
    Specify the folder path.
.PARAMETER Server
    One or more vSphere servers to apply the command on.
    If no value is given to this parameter, the command runs on the server currently specified in the
    $DefaultVIServer variable.
.OUTPUTS
    FolderImpl
.EXAMPLE
    New-BlueFolderByPath -Path dc/location/environment/infrastructure/desktop/departments01 -Datacenter Datacenter1 -Server vCenter1
    This command will create a FolderImpl object for the folder with path
    dc/location/environment/infrastructure/desktop/departments01 in Datacenter1 on vCenter Server vCenter1.
#>

  param([Parameter(Mandatory=$true)] [string] $Path,
        [Parameter(Mandatory=$true)] $Datacenter,
        [VMware.VimAutomation.ViCore.Impl.V1.VIServerImpl[]] $Server=$DefaultVIServer)

  $Datacenter = Get-Datacenter $Datacenter
  $Folder = Get-Folder -Name vm -Location $Datacenter
  $Path.Split('/') | ForEach-Object {
    if ($Folder) {
        $SubFolder = Get-Inventory -Name $_ -Location $Folder -NoRecursion -Server $Server 2> $null
    }
    else {
        $SubFolder = Get-Inventory -Name $_ -NoRecursion -Server $Server 2> $null
    }
    if (-not $SubFolder) {
      $SubFolder = New-Folder -Name $_ -Location $Folder -Server $Server 2> $null
    }
    $Folder = $SubFolder
  }
  $Folder
}

New-BlueFolderByPath -Path dc/location/environment/infrastructure/desktop/departments01 -Datacenter Datacenter1
New-BlueFolderByPath -Path dc/location/environment/infrastructure/server/departments01  -Datacenter Datacenter1
New-BlueFolderByPath -Path dc/location/environment/infrastructure/server/departments02  -Datacenter Datacenter1
New-BlueFolderByPath -Path dc/location/environment/infrastructure/server/departments03  -Datacenter Datacenter1
New-BlueFolderByPath -Path dc/location/environment/infrastructure/server/departments04  -Datacenter Datacenter1

Best regards, Robert

Tags: VMware

Similar Questions

  • Imports to create my destination but put the images in a subfolder under my destination (always under the same name but different from my folder created)

    Imports to create my destination but put the images in a subfolder under my destination (always the same name but different from my folder created under) Lightroom CC 2015.3

    I solved the problem. I think that this should be addressed.

    When importing from is no possibility for "put it in a subfolder when.

    display all the options. But there is down to bottom left a little box that

    When hovered says 'show fewer options'. When this window opens and copy

    is selected, it offers the possibility to in a subfolder. Who has been

    selected and the origin of the problem.

    It is an option that should show the full screen, but also the show

    under the screen.

    Monroe

    Monroe Halpern

    [email protected]

  • Can dynamically create you index rules or virtual models in plsql?

    I am writing a plsql utility that loads data into a new model in offline mode. Once the load is complete, I need to create a new index of rules based on the definition of an index of existing rules. Once this is done, I need then to drop my virtual model existing and re-create it to include the new model I just loaded. I realize I could hardcode the two statements created in my plsql but I rather dynamically build lists of types "sem_apis.create_entailment" and "sem_apis.create_virtual_model" so that I don't have to change the code every time that I add new models to my environment (i.e. with this feature, I can add new models to the index of the rule and vitual manually models and my load utility would automatically include) in the next run of load).

    How can I pass the list of templates in each of these APIs? The documentation states that both accept a parameter of "models_in" of type SEM_MODELS, to whom he explains has a definition of TABLE OF VARCHAR2 (25).

    I created variables of types said in my utility and initialized them valid with models. However, whenever I try to run the API in my plsql using these variables, I get the following error:

    PLS-00306: wrong number or types of arguments in the call to 'CREATE_VIRTUAL_MODEL '.

    I have attached the sample code below:

    declare
    Model_T. ARRAY TYPE IS VARCHAR2 (25);
    model_list model_T;
    Start
    model_list: = model_T ('M1', 'M2');
    for me in model_list.first... loop of model_list. Last
    dbms_output.put_line (i: ' = ': model_list (i));
    end loop;
    sem_apis.create_virtual_model ('m12_NEW', model_list);
    end;
    /


    Has anyone successfully done this before? Any ideas how I might be able to get this to work?

    Thank you!

    Use the type SEM_MODELS as shown below:

    declare
    model_list SEM_MODELS;
    Start
    model_list: = SEM_MODELS ('M1', 'M2');
    ...
    end;
    /

  • How to create my own reactive model

    Hello

    I need to create my own sensitive model, so we can accelerate the development of our e-learning modules.  I know how to create a model.  But it gives me the opportunity to make a static.  I thought that I could open the default reactive model file, modify and then save it under a new name. But it is not found or I can't find it! .

    Each active web sites I found that eLearning brothers allows you to download what they call a model, but this is a project, not a true template file (CPTL).

    Can someone help me please?

    Thank you!  Rik

    Are you sure that you need a model? A sensitive issue is not enough? Take a look at my last blog entry to see the difference. I was little confused by confusion about themes and templates, too, as you know with brothers in e-learning assets. Never, they offer a model, or a theme, but always a cptx file. Here is the link:

    What's in a theme - a model? -Captivate Blog

    There is no model of reagent by default as far as I KNOW, there are several default only reactive themes included with Captivate and also several pallets of theme colors.

  • create a new virtual machine with the default settings?

    I was wondering if there was a way to create a new virtual machine with the default settings.

    For example, let's say I want all new Lion VM to have 2 CPU cores. Is there a way to set this automatically? There are other parameters I want a new machine to inherit automatically, I was wondering if there is an automatic way to do this, or is it a feature request...

    Thanks in advance

    lerker wrote:

    Just for my clarification, when you say a vm model, basically I would execute a finder copy then drag back to the VM library, right?

    Yes.

    On the orders of spcirpting, it would be unix commands or are there specific vmware controls that make your job easier (in Applications/VMware\ Fusion/content or elsewhere)...

    IIRC, VMware Fusion 3 and later versions has an AppleScript dictionary, but it is not yet officially supported and may not be able to do what you want so, basically, only Unix Shell scripts, that's what I was referring to.  For an example, see my script attached to the following response: Re: vmware - script of the creation of the vm and the operating system installation process

  • Error during communication with the remote host when you create the new virtual machine

    I'm under 7 ESX servers on IBM Blade H22 there is a mistake to invite while I create a new virtual machine

    on the vcenter Server

    At the end of 30-35 minutes, it gives an error

    "Error during communication with the remote host"

    The existing machines are working well... I tried to create virtual machines to other ESX servers as well

    but the same question. I also tried to make the clone of existing machines, but without success

    Can anyone help?

    You rescan the LUNS once?

    You've restarted the management agent?

    You've restarted the vpxa?

    If this isn't the case, please perform the step above and check out them.

  • I created a budget using models and cannot change it

    I created a budget using models and cannot change it.  When I open it I can't do anything with it!  I'm stupid or what?

    Like Emily Litella, Neve rmind!

  • Y at - it a library user templates were created and displayed their models to?

    Y at - it a library user templates were created and displayed their models to? Thank you.


    < email published by host >

    Hi Dennis,

    Do a search on the web for numbers Mac models. Many sites offer them for free.

    In addition, numbers will open the documents and templates Excel and converted to the format of the numbers.

    Kind regards

    Ian.

  • create subfolder

    Hai guys,

    I'm using LabVIEW 2012 sp1. So, in this how can I create subfolder to save an excel file generated using the report of generation blocks.

    The excel file must be stored in a different folder according to the test operation.

    Can anyone suggest me how can create subfolders when executing the VI.

    Kind regards

    PHANI

    Hello tejaphani,

    There is a VI create a folder in the file IO/Advanced file functions Palette.

    Hope this is what you wanted.

  • Create lots of Chief models of Orchestra

    Hello

    I want to create a bunch of models and Orchestra Chief conference alias. The idea is to create aliases of conference 50 with different PIN for each.

    Y there is a way to do it using the command line or easy way instead of manually create templates & alias (it will be 100 steps)

    Kind regards

    Belinda

    Looks like you can only use the web interface to create aliases and models of the Conference.  It doesn't seem to be a CLI or API commands to the configuration of the Conference on the driver.

  • Create the new data model

    How can I create a new data model?

    Hello

    In the browser, right-click on the drawings and models, select 'New Design'.

    Maybe look in the tutorials.

    Joop

  • A suspended snapshot could not be created for the virtual machine (DC) ha-data center (DC) \vm\VMware vCenter Server Appliance.

    Hello gentlemen,

    I can not only save this virtual machine with Backup Exec 2014 for a long time.

    They are there was no snapshot in snapshot Manager.

    Could you help me?

    A suspended snapshot could not be created for the virtual machine (DC) ha-data center (DC) \vm\VMware vCenter Server Appliance.

    V-79-57344-38260 - failed to create a snapshot of the virtual machine. The virtual machine is no longer exist, or may be too busy to pause to take the snap.

    A suspended snapshot could not be created for the virtual machine (DC) ha-data center (DC) \vm\FRPA111PRIM01.

    V-79-57344-38299-\vm\FRPA111PRIM01 ha-data center (DC) VMVCB::\\192.168.204.42\VCGuestVm\ (DC). To try to take a snapshot of a virtual machine failed because it could not be suspended in a file system.

    Hello

    I found the solution.

    I disabled the JOB BE general relativity.

    and the host where the virtual machine belong was not the right time. No Ntp server has been configured.

    I did and now there works.

    I think that the problem can come from this.

  • VMware workstation, crashes when I try to create a new virtual machine

    Hello

    I never had this problem before, but I didn't create a new virtual machine in a very long time. Last time I created one was making Workstation 9 I think. Some time after the upgrade to Workstation 10 or 8.1 of Windows Update 1 it has started.

    In 10 Workstation running on Windows 8.1, I select the file > new Virtual Machine dialog coming upwards and in a few seconds crashes of VMware workstation and closes.

    So I checked the Windows event logs and find

    Warning "VMware Workstation to function properly, must be reinstalled after the upgrade to Windows."

    So, I upgraded from 10.0.2 to 10.0.3 and it uninstalled and reinstalled but I still get this warning.

    Followed by an error

    ***

    Journal name:Application
    Source:Application error
    Date:15/08/2014 23:33:53
    Event ID:1000

    Task category: (100)

    Level:Error
    Keywords:Classic
    User:N/A
    Computer:P7Win8MC

    Description:

    Name of the failing application: vmware.exe, version: 10.0.3.48389, time stamp: 0x539a4fb0

    Name of the failed module: MSVCR90.dll, version: 9.0.30729.8387, time stamp: 0x51ea24a5

    Exception code: 0xc0000005

    Offset: 0x0003bece

    ID of the process failed: 0 x 1788

    Start time of application vulnerabilities: 0x01cfb902de541c11

    The failing application path: C:\Program Files (x 86) \VMware\VMware Workstation\vmware.exe

    Path of the failing module: C:\WINDOWS\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.8387_none_5094ca96bcb6b2bb\MSVCR90.dll

    Report ID: 24d5effb-24f6-11e4-bedd-20cf30780548

    ***

    So I need help to track down what I am not sure what VMware paper to look to maybe see what is happening.

    Thank you

    Rainey

    Well, I found the problem.

    I looked in the UNK file and found a few ISO files wrongs tracks.

    I had mounted some ISO in the past and they have made the entry in this file of preferences such as "isoLocationMRUx".

    I'd change the leter this ISO file player so they could not be found as input, once I corrected the paths I can now create a new virtual machine.

    He is responsible for ion BONE the new virtual machine now.

  • Upgrade to ESXi 5.0 to 5.1 - No Hardware 9 option available when creating a new virtual machine

    Greetings,

    I improved my esxi U1 5.0 to 5.1 and attempted to create a new virtual machine in hopes of using the new version of material 9.

    Using the standard and Custom options I been unable to create a Version 9 hardware VM by default.

    The only option I had was manually upgrade to version 9 once the virtual machine was created.

    Any thought or is - this as planned? I need to reinstall from scratch, my host?

    dhayashi

    To create virtual machines with HW version 9, you can use the Web Client, rather than the windows based Client vSphere.

    André

  • Could not create the Java virtual machine

    Hello

    I am using VM ware and installed Linux operating system.

    In my MedRecDomain of Weblogic Admin Server to start and also to start MedRecSvr1.

    But MedRecSvr2 & 3 do not stand up.

    Details:

    OS: Linux

    Details of the JVM: JAVA memory arguments: -Xms512m-Xmx512m

    WebLogic Version: 10.3.6

    Please see the Journal as shown below,

    [root@ram bin] #./startManagedWebLogic.sh MedRecSvr2 &

    [1] 3194

    [root@ram bin] #.

    .

    Arguments of memory in JAVA:-Xms512m-Xmx512m

    .

    Start mode of WLS = Production

    .

    CLASSPATH=/opt/labs/ows/wlshome/patch_wls1036/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/opt/labs/ows/wlshome/patch_ocp371/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/opt/labs/ows/wlshome/jrockit_160_29_D1.2.0-10/lib/tools.jar:/opt/labs/ows/wlshome/wlserver_10.3/server/lib/weblogic_sp.jar:/opt/labs/ows/wlshome/wlserver_10.3/server/lib/weblogic.jar:/opt/labs/ows/wlshome/modules/features/weblogic.server.modules_10.3.6.0.jar:/opt/labs/ows/wlshome/wlserver_10.3/server/lib/webservices.jar:/opt/labs/ows/wlshome/modules/org.apache.ant_ 1.7.1/lib/ant-all.jar:/opt/labs/ows/wlshome/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/opt/labs/ows/wlshome/wlserver_10.3/common/derby/lib/derbyclient.jar:/opt/labs/ows/wlshome/wlserver_10.3/server/lib/xqrl.jar

    .

    PATH=/opt/labs/ows/wlshome/wlserver_10.3/server/bin:/opt/labs/ows/wlshome/modules/org.apache.ant_1.7.1/bin:/opt/labs/ows/wlshome/jrockit_160_29_D1.2.0-10/jre/bin:/opt/labs/ows/wlshome/jrockit_160_29_D1.2.0-10/bin:/usr/lib/qt-3.3/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/root/bin

    .

    ***************************************************

    * To start WebLogic Server, use a username and *.

    * password assigned to an administrator-level user.  For *.

    * server administration, using the WebLogic Server *.

    * console in http://hostname/ReportServer: port/console         *

    ***************************************************

    from weblogic with the Java version:

    Java version "1.6.0_29".

    Java (TM) SE Runtime Environment (build 1.6.0_29 - b11)

    Oracle JRockit (R) (build R28.2.0-79-146777-1.6.0_29-20111005-1807-linux-ia32, update mode)

    WLS starting with line:

    /opt/labs/ows/wlshome/jrockit_160_29_D1.2.0-10/bin/java - jrockit-Xms512m-Xmx512m-Dweblogic.Name=MedRecSvr2-Djava.security.policy=/opt/labs/ows/wlshome/wlserver_10.3/server/lib/weblogic.policy-Dweblogic.ProductionModeEnabled=true-Dweblogic.security.SSL.trustedCAKeyStore=/opt/labs/ows/wlshome/wlserver_10.3/server/lib/cacerts-da-Dplatform.home=/opt/labs/ows/wlshome/wlserver_10.3-Dwls.home=/opt/labs/ows/wlshome/wlserver_10.3/server-Dweblogic.home=/opt/labs/ows/wlshome/wlserver_10.3/server-Dweblogic.management.discover=false-Dweblogic.management.server= http://10.0.2.15:7020 -Dwlw.iterativeDev=false-Dwlw.testConsole=false-Dwlw.logErrorsToConsole=false-Dweblogic.ext.dirs=/opt/labs/ows/wlshome/patch_wls1036/profiles/default/sysext_manifest_classpath:/opt/labs/ows/wlshome/patch_ocp371/profiles/default/sysext_manifest_classpath weblogic. Server

    [ERROR] [memory] Could not commit 524288 KB memory heap at 0x95e09000.

    Could not create the Java virtual machine.


    Also, when the managed server stop also get the same question,

    [root@ram bin] #./stopManagedWebLogic.sh MedRecSvr2

    If you stop Weblogic Server...

    [ERROR] [memory] Could not commit 524288 KB memory heap at 0x95e09000.

    Could not create the Java virtual machine.

    Fact

    Stopping Server Derby...

    Derby server stopped.

    [root@ram ~] # cat/proc/meminfo

    MemTotal: 511620 kB

    MemFree: 5224 kB

    Stamps: 760 kB

    Caching: 20440 kB

    SwapCached: 109492 kB

    Active principles: 219424 kB

    Inactive: 220788 kB

    Active (Anon): 210272 kB

    Inactive (Anon): 210408 kB

    Active (leader): 9152 kB

    Inactive (queue): 10380 kB

    Unevictable: 0 kB

    Mlocked: 0 kB

    HighTotal: 0 kB

    HighFree: 0 kB

    LowTotal: 511620 kB

    LowFree: 5224 kB

    SwapTotal: 1048568 kB

    SwapFree: 1516 KB

    Sale: 12 KB

    Writeback: 512 KB

    AnonPages: 309740 kB

    Mapped: 12684 kB

    Shmem: 1628 kB

    Slab: 48500 kB

    SReclaimable: 12196 kB

    SUnreclaim: 36304 kB

    KernelStack: 2656 kB

    PageTables: 9104 kB

    NFS_Unstable: 0 kB

    Bounce: 0 kB

    WritebackTmp: 0 kB

    CommitLimit: 1304376 kB

    Committed_AS: 2210364 kB

    VmallocTotal: 505912 kB

    VmallocUsed: 5196 kB

    VmallocChunk: 486476 kB

    HugePages_Total: 0

    HugePages_Free: 0

    HugePages_Rsvd: 0

    HugePages_Surp: 0

    Hugepagesize: 2048 kB

    DirectMap4k: 6080 kB

    DirectMap2M: 518144 kB

    Please help identify the problem.

    Thnks in advance

    Kind regards

    Bouchra Arun

    Web Site: http://www.industryvertical.co.in/

    People,

    This issue has been resolved,

    Details of the problem:

    RAM 512 MB only, use JVM parameters

    "" Arguments of memory in JAVA: -Xms512m-Xmx512m ".

    If WL struck to use more memory for the start and the stop MedRecSvr2, 3 (managed server)

    Please read the following steps to correct,

    1. open Oracle VM Virtual box

    2. go to settings and select the system option (make sure that all OS turns off).

    3. go in card mother in this window select Base memory previously is changed to 1920 MB (1.875 GB) 512 MB.

    4. click on Ok.

    Then the allocated RAM will be more, for Weblogic doesn't get knocked because of insufficient RAM memory.


    Respect,

    Bouchra Arun

    Portrait of the industry

    Please Mark Helpful / good answer

Maybe you are looking for