A bit of undocumented commands/functions

There seems to be many orders without papers that Mirage can do which are very useful in some cases - such as the extraction of SIS (which would have been EXTREMELY helpful the other day) and other type of command line commands.  Are there additional documentation that shows what we can do with Mirage like that, like a Mirage Advanced Admin Guide?  If this is not the case, can we have this discussion be a place of registration for all is the controls?

My contribution is the CLEANSTATE = 1 command.  Completely, this removes the settings on the client of Mirage and reinstall as new (from my understanding).

The full command is...

to completely uninstall:

msiexec.exe /x MirageClient.msi CLEANSTATE=1

Now if this is documented somewhere else, my apologies, I hadn't seen until support has me try once.

"Ctrl + Alt + S", while the Mirage client window is also on the development to enter other parameters.

Tags: VMware

Similar Questions

  • Win 7 64 bit is the command line 32-bit or 64-bit?

    Win 7 64 bit is the command line 32-bit or 64-bit?

    Win 7 64 bit is the command line 32-bit or 64-bit?

    Hello

    There is a 32-bit and 64-bit version of the shell (cmd.exe) and is the same for some of the other main components of the system, such as the Publisher of the registry (regedit.exe).

    That the one you use depends on how you start the shell. If you start the shell in one of the normal ways, for example by typing cmd.exe in the Run dialog box type cmd.exe in the start/search box, etc, then you would use the 64-bit version.

    To start the 32-bit version of the shell, you must specify the path. For example from the Run dialog box, type C:\Windows\sysWOW64\cmd.exe or the same path in the start/search box.

    If you often use the shell, it's a good idea to customize the 32-bit version which makes it easier to see that it is running. I changed the background color of the 32-bit version of a medium blue. In this way there is no doubt which I use.

    It is also important to note that each command you use either version are tackling the same version of system files that are involved with this command. For example if you type regedit.exe in each version, you will get the same version of bits of the registry editor.

    I hope this helps.

    Thank you for using Windows 7

    Ronnie Vernon MVP
  • Error creating features in the packages - unknown command FUNCTION

    Hello

    I usually identify with the diagram of the system via the SQL command line and run my sql files. I have the database below and the test package. But I get the error:
    Order unknown start "FUNCTION p...» ' - the rest of the ignored line

    This is the database I load previously:

    DROP TABLE Judete CASCADE CONSTRAINTS;
    CREATE TABLE Judete
    (
    JD CHAR (2) PRIMARY KEY.
    NumeJud char(10) NOT NULL UNIQUE,
    Regiune CHAR (15) by default "Moldova" CHECK (Regiune IN ('Moldova', 'Transilvania', 'Banat'))
    );

    DROP TABLE Localitati CASCADE CONSTRAINTS;
    CREATE TABLE Localitati
    (CodPostal NUMBER (8) PRIMARY KEY,)
    NumeLoc NON NULL, char (15)
    Judet (2) tank,
    FOREIGN KEY (Judet) made REFERENCE Judete (JD)
    );

    DROP TABLE Persoane CASCADE CONSTRAINTS;
    CREATE TABLE Persoane
    (NOC NUMBER PRIMARY KEY (15),)
    NumePers NON NULL char (20)
    PrenPers NON NULL char (20)
    CodPostal NUMBER (10),
    Such NUMBER (12) NOT NULL,
    FOREIGN KEY (CodPostal) made REFERENCE to Localitati (CodPostal)
    );

    DROP TABLE Produse CASCADE CONSTRAINTS;
    CREATE TABLE Produse
    (CodProdus NUMBER (10) PRIMARY KEY,)
    NumeProdus NON NULL, char (15)
    Loan NUMBER (8) NOT NULL
    );



    DROP TABLE Vanzari CASCADE CONSTRAINTS;
    CREATE THE Vanzari TABLE
    (CodV NUMBER (8) PRIMARY KEY,
    CodProdus NUMBER (10),
    PersCNP Number (15),
    DataV DATE NOT NULL,
    NrProduse NUMBER (8) NOT NULL,
    FOREIGN KEY (PersCNP) made REFERENCE Persoane (NOC),
    FOREIGN KEY (CodProdus) makes REFERENCE Produse (CodProdus)
    );

    INSERT INTO Judete VALUES ('IS', 'Iasi', 'Moldova');
    INSERT INTO Judete VALUES ("CJ", "Cluj", "Transilvania");
    INSERT INTO Judete VALUES ("TM", "Timis', 'Banat');

    INSERT INTO Localitati VALUES (200, "Vaslui", "IS");
    INSERT INTO Localitati VALUES (201, 'Targu Frumos', 'IS');

    INSERT INTO Localitati VALUES (202, 'Criseni', 'CJ');
    INSERT INTO Localitati VALUES (203, "Dealu Botii", "CJ");

    INSERT INTO Localitati VALUES (204, "Beba Veche", "TM");
    INSERT INTO Localitati VALUES (205, "Blajova", "TM");


    INSERT INTO Persoane VALUES (0001, "Ionescu", "Ion", 201, 0332504312);
    INSERT INTO Persoane VALUES (0002, "Vasilescu", "Vasile", 203, 0332304612);
    INSERT INTO Persoane VALUES (0003, "Ionescu", "Ion", 204, 0322564322);

    INSERT INTO Produse VALUES (1, "Limp", 50);
    INSERT INTO Produse VALUES (2, 'First', 80);
    INSERT INTO Produse VALUES (3, 'Corn', 35);

    INSERT INTO Vanzari VALUES (100, 1, 0001, to_date('2011-03-07','yyyy-mm-dd'), 5);
    INSERT INTO Vanzari VALUES (101, 3, 0001, to_date('2011-02-07','yyyy-mm-dd'), 2);
    INSERT INTO Vanzari VALUES (2, 102, 0002, to_date('2011-01-08','yyyy-mm-dd'), 7);
    INSERT INTO Vanzari VALUES (1, 103, 0002, to_date('2011-03-08','yyyy-mm-dd'), 15);
    INSERT INTO Vanzari VALUES (3, 104, 0003, to_date('2011-02-19','yyyy-mm-dd'), 9);
    INSERT INTO Vanzari VALUES (105, 1, 0003, to_date('2011-03-29','yyyy-mm-dd'), 1);


    the package is:

    CREATE or REPLACE PACKAGE pachet_lab2
    IS
    FUNCTION prod_bine_vandut RETURN NUMBER;

    END pachet_lab2;
    /

    CREATE OR REPLACE pachet_lab2 BODIES


    FUNCTION prod_bine_vandut RETURNS the NUMBER IS
    DECLARE
    v_sale NUMBER (6);
    V_nume char (15);
    v_cod NUMBER (10);
    BEGIN
    SELECT max(p.pret * v.NrProduse) IN the v_sale DE Produse p, Vanzari v
    WHERE the p.CodProdus = v.CodProdus;


    SELECT p.numeProdus INTO v_nume Produse p, Vanzari v
    WHERE p.CodProdus = v.CodProdus AND v_sale = p.pret * v.NrProduse;


    SELECT p.codProdus INTO v_cod Produse p, Vanzari v
    WHERE p.CodProdus = v.CodProdus AND v_sale = p.pret * v.NrProduse;

    Return v_cod;
    END prod_bine_vandut;



    END pachet_lab2;
    /



    I need to change the schema that I use? How can I do?

    Thank you
    Paul
    CREATE OR REPLACE PACKAGE BODY pachet_lab2 IS --you misse keyword PACKAGE 
    
    FUNCTION prod_bine_vandut RETURN NUMBER IS
    -- DECLARE is not allowed here
    v_sale NUMBER(6);
    -- ...
    

    Good bye
    DPT

  • Satellite A300 and Vista 64-bit - unknown and non-functional devices

    I have the Satellite A300-1Gn
    Here are some features:

    Technology
    type: technology Intel® Centrino® 2 processor with processor Intel® Core 2 Duo P8400, clock speed of the Intel® PM45 Express and Intel® WiFi Link 5100 chipset: 2.26 GHzFront Side Bus: 1066 MHz2nd level cache: 3 MB

    Operating system
    GenuineWindows Vista® Home Premium 32 - bit Edition (pre-installed, Toshiba-HDD recovery)



    System memory
    standard: 3 072 (2 048 + 1 024) MB
    maximum extension: 8 192 MBtechnology: DDR2 RAM (800 MHz)

    Hard drive
    capacity: 320 GB
    Certification: S.M.A.R.T. disc rotation: 5 400 rpm

    DVD Super Multi (Double Layer) drive
    Compatibility: CD-ROM, CD - R, CD - RW, DVD-ROM, DVD-R, DVD + R, DVD + R (DL), a DVD-R (DL), DVD - RW, DVD + RW, DVD-RAM
    Maximum speed: read: 24 x CD-ROM, 8 x DVD-ROM / write: 24 x CD - R, 4 x
    CD - RW, 10 x CD - RW, 16 x CD - RW, DVD-R 8 x, 6 x DVD-R (Double Layer), the HS
    6 x DVD - RW, 8 x DVD + R, DVD + R 6 x (dual layer), 8 x 5 x DVD-RAM, DVD + RW
    type: DVD Super Multi (Double Layer) drive

    Display
    "size: 15.4"
    type: Toshiba TruBrite® WXGA + TFT high brightness display resolution internal: 1 400 x 900

    Graphic adapter
    Manufacturer: ATI
    type: ATI Mobility Radeon™ HD 3650 supporting HyperMemory™ technology memory amount: 512 MB dedicated VRAM (up to a total of 2 302 MB available)
    graphics memory using HyperMemory™ with 4 GB of system memory technology)
    memory type: GDDR2 video (500 MHz) bus RAM (resp. RAM video and system memory combined) connected: 16 x PCI Express...

    I installed windows vista 64-bit to try it, and I started to download all the drivers I could find from Toshiba site... But I still have in my device under 'other devices' management 3xbase system of the device (who report that they do not work) and an unknown device "it works ok same woithout this, but my HD movies are restless...
    Is it posible to thath I missed something... Bluetooth, wireless, sound, games, camera, mic, etc., everything works...

    Thanks in advance guys (or girls);...

    Hello

    Have you installed the right graphics card driver?
    The Sat A300-1GN belongs to the PSAGCE series.
    I checked the page of the Toshiba driver and there are two pilots;
    I think that you should choose the ATI driver 8.477 display because this driver supports the Mobility Radeon HD 34xx/36xx chips.

    Other base system devices could be Bridge Media slot (for SD cards), touchpad, HDMI Control Manager.

    I didn't find these drivers 64-bit on Toshiba page. Maybe you should choose some drivers for Vista 32 bit

  • RefNum out: where on the palette of command/function?

    See photo. RefNum out looks like a dummy variable for sticking to the shift register if the register is not empty, I'm wrong?

    But I searched on the range of function/control, I can't find refnum outside, where is he?

    I don't know that there is a constant empty 'file refnum out', but it can be created in two ways, the first being a right click on a file function that creates a refnum and do a 'constant to create' another is by clicking on a thread of existing refnum, or in the instance of your business structure the terminal not connected, in this case, and do the same thing (essentially the same as the first), and a third is declining refnum byte stream on the FP control, will diagram and right-click a "constant change". All are a couple of more strikes at the keyboard and mouse clicks just by pulling on the palette.

  • How to study the commands/functions for example <>? &lt;? Sum (fieldName)? &gt;

    I'm new to bi publisher and in some cases, it seems that people are coding for what they want.  How can I find more information about the possible functions that are available.

    For example: Sum.  I used it and it works.  I just what to know whatelse is available and how to code. <? sum (#)? >

    Howard

    Please take a look at this material. It covers almost most of the features of BI Publisher.

    http://docs.Oracle.com/CD/E28280_01/bi.1111/e22254.PDF

    Go through the sub topics to know more functions RTF on

    Extended function in RTF templates support

    Creation of RTF models

    Creating RTF templates using the template for Word generator

  • Get-pool is not recognized as a cmdlet command, function or a script...

    Hello!

    I am trying to automate surgery recompose. I had trouble getting the Get-pool command to work; the strange thing is that other commands will work. For example, some of the things I can do are:

    SE connect-VIserver

    Get - VM

    New-Snapshot

    Yet, for some reason, I can't Get-pool. I googled this and tried to look through several forums, but I keep hitting a wall. When I do a get-PSsnapin-registered, I see not registered the following:

    VMware.DeployAuotmation
    VMware.ImageBuilder

    VMware.VimAutomation.Core

    VMware.VimAutomation.License

    VMware.VimAutomation.Storage

    VMware.VimAutomation.Vds

    WDeploySnapin3.0

    My research has shown me that, for the cmdlet Get-Pool, the VMware.VimAutomation.Core was necessary. I also ran PowerCLI as administrator. I even tried the PowerCLI upgrade to 5.8. Why this cmdlet is not recognized? I find it odd that I can take a picture, but I can't reconstruct a pool. Any help would be appreciated!

    Thank you!

    ~ Justin

    I'm afraid that no, the view cmdlets come in a separate PSSnapin (called VMware.View.Broker) which is only available on the connection view servers.

    In my post, as described in method 1.

    Note that these cmdlets work only in PowerShell 2 or in a PowerShell session that starts under a Version 2 session.

  • bit confused about the function in pipeline

    I thought the point of the function in the pipeline should disseminate datat to a line of a function at a time.
    Quite possible that I am doing something wrong here, but
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE     10.2.0.4.0     Production
    TNS for HPUX: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    create type virtual_table_type as table of number;
    create or replace 
    function virtual_table (p_start number, p_end number) return virtual_table_type
     pipelined as
       
    begin
        for i in p_start..p_end loop
            dbms_output.put_line(' returning row'|| i );
           pipe row(i);
        end loop;
         dbms_output.put_line('done...');
       return;
        
    end virtual_table;
    begin
        for x in (select *
                  from table (virtual_table(-2, 2)))
        loop
          dbms_output.put_line(' printing from anonumous block '||x.column_value);
        end loop;
    end;
    Why am I
     returning row-2
     returning row-1
     returning row0
     returning row1
     returning row2
    done...
     printing from anonumous block -2
     printing from anonumous block -1
     printing from anonumous block 0
     printing from anonumous block 1
     printing from anonumous block 2
    and is not
    returning row-2
    printing from anonumous block -2
     returning row-1
    printing from anonumous block -1
    returning row0
    printing from anonumous block 0
    
    and so on

    Put it cannot be guaranteed if it is 9i or 10g, when you use features of double pipe. Oracle will determine when the data is ready. It will be more obvious if you test with more data than just 5.

  • size of palette of functions and commands

    Hello

    I ve just installed LV2012

    And I have a strange problem:

    Icons on pallets are too small and it drives me crazy

    There were once under each function description...

    How to make them normal as in previous versions?

    Tools-> Options-> ring of pallets in the range of commands/functions menu select category (icons and text)

    I really like the way you have it now...

    Alternatively, you can copy your file labview.ini from the previous version in the folder LV12.  One day they will import let us parameters during the annual migration.

  • How can I use the BCGTransform function to treat the 16-bit Image?

    Hi ~

    I use LabWindowsCVI8.5 and NI Vision to make the treatment of the Image. When I read the "IMAQ Vision for LabWindowsCVI Reference Manual", I found that the imaqBCGTransform function only supports 8-bit Image, while I do the BCG to turn on 16-bit image. Are there solutions to use the BCGTransform function to deal with the 16-bit Image? Or any other feature that could make the correction Gamma, contrast and brightness on the 16-bit Image?

    Thank you very much!

    because imaqBCGTransform is implemented as a lookup table, we can understand why it is limited to 8-bit images.

    Now let's take a look at the definition of each of this mandate (from the NI Vision Concepts documentation):

    -brightness: a constant added to the components red, green, and blue pixel of color over color, decoding of the process;

    -contrast: a constant multiplication factor applied to the components of the luma and chroma of a pixel of color in color to decoding process.

    -gamma correction: expand high gray-level information in an image while removing information of low level of gray.  (the chapter on lookup tables gives some examples of corrections gamma)

    now that you understand that this transformation is a simple mathematical function, simply calculate the correction for each pixel on your 16-bit images.

    I know not the exact formula used by the imaqBCGTransform function, but you should be able to approach by performing some tests on images 8 bits with the original function... or you can make your own formula... or find one on the net... or you can ask someone at home OR you give the formula...

  • Win7 64 bit freezes & arrow function does not work, do not click to navigate anywhere

    Win7 64 bit PC crashes & arrow function does not work, do not click to navigate anywhere, exceptionally after being on ~ 2 + hrs. I can only turn off by pressing the power switch for about 5 seconds.

    Hello

    You did changes to the computer before the show?

    Method 1
    Step 1:
    I suggest to start the computer in safe mode and check if the problem persists.

    Start your computer in safe mode
    http://Windows.Microsoft.com/en-us/Windows7/start-your-computer-in-safe-mode

    Step 2:  If the problem is solved in safe mode, then I suggest you perform the clean boot and remove the program that is causing the problem.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    http://support.Microsoft.com/kb/929135
    Note: Follow step 7 clean boot KB929135 article to reset the computer in normal mode.

    Method 2
    I suggest you try the steps from the following link:

    Optimize Windows 7 for better performance
    http://Windows.Microsoft.com/is-is/Windows7/optimize-Windows-7-for-better-performance

    Also provide an observer event logs.
    Open event viewer
    http://Windows.Microsoft.com/en-in/Windows7/open-Event-Viewer

  • Access the Windows\System32 folder from a non-elevated command window (64-Bit operating systems)

    Is it possible to the system32 folder access to the operating system 64 bit from a command window, not high.

    I had entered the following commands in a command not high window.
    cd\
    c:
    CD windows
    CD system32
    beginning.
    This command opens the SysWOW64 folder rather than the System32 folder.
    If it is possible to access the system32 from a folder window no elevated command then please provide the steps to do this.

    Hi Geo,

    System32 is a folder of the operating system. So, you have to open in administrator mode.

    Please let us know if you have any other questions about Windows.

  • Need driver Windows 7 64 bit for axes accelerometer ST microelectronics 3 on Dell Inspiron Mini Duo 1090

    Someone at - it a way to correct the ST Microelectronics 3-axis accelerometer (motion detector) which will not work because I upgraded from 32-bit to 64-bit Windows 7? Given that the Intel Atom N550 is only dual core too slow, I am trying to extend the useful life of the convertible tablet with 4 GB of RAM and 64 bit version will use. In addition, I started by trying to upgrade to Windows 8 because there is an app I want to who does not work on Windows 7. Not only do you get the accelerometer fail to start, but the updates of Windows 8 removed my OS, so I had to restore Windows 7 32 bit from a backup. Then I tried to install Windows technical preview 10 because the app even says it will work with that, but the installation kept hanging up to 30%, so I gave up and tried Windows 7 64 bit. Still, no functional accelerometer, but at least updates all worked (so far, including sp1). Given that I intend to upgrade to 64-bit Windows 10 as soon as they release it (July according to technical support), I hope this driver setting.

    In the Dell support forums, message by Carnino April 7, 2011 offers workaround using Microsoft .net SDK. Since it does not say which version has the CorFlags app, I have installed .net frameworks on 4 and Visual Studio 2010 upwards. At the Windows command prompt, I get errors saying that CorFlags was not a recognized command. I asked for help on the Dell forum even and installed the CorFlags there app. I saw flash by in the command line window, so he must have installed, but it is not yet a recognized order when I try to run it at the command prompt.

    Then I tried Windows SDK 7.1 commands prompt, which also tells me "CorFlags.exe is not recognized as a command internal or external, an executable program or batch file." Now what? Is not a developer, I don't know if I have installed all the necessary tools for .net framework programs work, and I have no idea how to use the Visual Studio or if a version is mess up another version. Now, I have installed the Windows Driver Kit for Windows 8.1 because it says it does too many drivers for Windows 7, but it's an another shot in the dark.

    I can use the orientation of the laptop computer screen if necessary when I flip the screen for Tablet of orientation, but it is annoying, especially for reading and editing of books while I walk, the main use for which I bought this Duo.

    No, I can't afford to buy a Tablet convertible new again, especially rare with a decent size hard disk. I don't trust books of my clients to cloud storage. Please help if you can. Thank you.

    Try this driver for Windows 7 64-bit:

    http://downloads.Dell.com/FOLDER01182758M/1/System-Utilities_Driver_V3J22_WN_2.2.2.2_A00.exe

    I have yet to find a driver for Windows 10 TP.

    P.S. If you want to extend the life of the SSD would be a good idea, something like 250-500 GB SSD BX100:

    http://UK.crucial.com/GBR/en/compatible-upgrade-for/Dell/Inspiron-duo-%281090%29

  • Pavilion 15-ab216nz: f1 - f12 function keys do not work

    Hello

    I shot this Pavilion laptop 15-ab216nz to win 10 to Win 7 64 bit.

    The function keys f1 - 12 do not work - what is missing?

    Thanks for the support

    The problem is resolved. Thanks for your reply.

    As the function keys have 2 different functions:

    (a) Act in accordance with the operating system (release e.g.F3, F5 reload, etc.)

    (b) Act as specific function of material (e.g. dim or bright the screen, increase or decrease the volume)

    (Usually one) is the default (without the combination with the 'fn' key) for b) to use the "fn" EHF.

    This computer works on the other hand, I discovered. There is no need to install the software.

    Kind regards

  • F4 function key does not work does not in Excel 2010

    I have a HP Pavilion series g - Windows 7-64 bit

    The F4 function key does not work in (2010 excel 64-bit).

    Any suggestions?

    ch1616

    Hello

    It may be useful to change the setting of the fn key in the bios as described in the link below to see if this has an effect on the f4 key in Excel.

    http://support.HP.com/us-en/document/c02035108

    Kind regards

    DP - K

Maybe you are looking for

  • Update BIOS: "AC ADAPTER IS PLUGGED OUT".. properly detected .not in fact

    Hello I have a Toshiba Satellite Pro 6100 works pretty well, but it does not correctly detect the battery. For example, I just tried to upgrade the BIOS, and I received an error message 'AC ADAPTER IS BRANCH OUT' with BATTERY in or TAKEN OUT. I can't

  • NETGEAR genius - network card showing strange connections

    Looking at the map of the network, I see far too many connections. One of the Japan, several of ARRIS (?) and one of IR (?). I tried to find these internally, but cannot find them. I consider our phones, pads, computers, TV, etc.. I've been hacked? A

  • Vista Service Pack 1 Installation Fail

    I have a hp laptop with Vista Home Premium ed. w / 32-bit operating system. I tried to load SP 1 for Vista and the following occurs. When the computer restarts after the installation it says. "Certain changes could not be made. Restoration of the cha

  • Problem getting the pageFlowScope number parameter in backing bean

    Hi, I use a taskflow with parameters of type oracle.jbo.domain.Number.I want to replace a method in my grain of support in order to take the value of the parameters pageflowscope.(inMarkNbr, inColorNbr)But I take as the result the following error:Err

  • Set trigger attribute validator

    Hey guys,.I use Jdev 12.1.2.I'm fighting to get the features desired by the validation of the attribute entity ADFBC. I am currently refactoring a project, and at the moment, work on the successful removal of postings of bean to the model layer. I ha