User Profile

Collapse

Profile Sidebar

Collapse
togikan
togikan
Last Activity: Nov 3 '10, 01:20 PM
Joined: Jul 29 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • How to cope Install error 1920 about winsxs merge modules in vista and 7

    Hi all,

    When I try to insltall my msi package I get an error only in vista and 7. "Error 1920. Service ... (...) failed to start. Veryfy that you have sufficent privileges to start system services"


    I get this error in vista or 7 if I build my setup with C++ 9 CRT Winsxs MSM merge module


    If I use C and C++ 7 runtime libraries it doesn't problem

    but with this I must...
    See more | Go to post

  • How to cope with "side-by-side configuration is incorrect" error in vmware?

    Hi all,

    When I try to open released .exe file (which I wrote in Visual Studio 2008) in VMWare Workstation 6.5 with Windows Server 2008 32bit OS, got "The application has failed to start because its side-by-side configuration is incorrect."


    error all time even if the code is;

    Code:
        #include <stdio.h>
        
        int main ()
        {
          
          printf
    ...
    See more | Go to post

  • togikan
    started a topic How to convert inline assembler to .asm file
    in C

    How to convert inline assembler to .asm file

    Hi all,

    I'm having a problem converting an inline assembler function to .asm file. I need seperate inline assembler code because in x64 architecture doesn't have support for inline assembly. Here is the code(and attached as a txt file IsVM.txt at the bottom),

    #include <windows.h>
    #include <string>
    #include <iostream>
    #include <tlhelp32.h>

    using namespace std;
    ...
    See more | Go to post
    Last edited by togikan; Jul 30 '10, 01:17 PM. Reason: added whole code

  • togikan
    replied to Detecting Virtualization
    in C
    Thanks Oralloy,
    I'm going on 2nd way now looking to convert this code :)

    bool IsInsideVMWare( void)
    {
    bool rc = true;

    __try
    {
    __asm
    {
    push edx
    push ecx
    push ebx

    mov eax, 'VMXh'
    mov ebx, 0 // any value but not the MAGIC VALUE
    mov ecx, 10 // get VMWare version
    mov edx,...
    See more | Go to post
    Last edited by togikan; Jul 30 '10, 11:40 AM. Reason: boolean variable? :)

    Leave a comment:


  • togikan
    started a topic Detecting Virtualization
    in C

    Detecting Virtualization

    Is there an intrinsic to detect that program on virtual pc or native pc. I have a function to do this with inline assembler but to do this on 64 bit I need intrinsics because no 64bit support for inline assembler.

    Regards,
    T H K
    See more | Go to post
No activity results to display
Show More
Working...