Error executing c windows system32 cmd exe

Hi,
  • Remove From My Forums
  • Question

  • Hi,

    On compiling my application in the VC++ IDE, i am getting the following error message «Error executing c:windowssystem32cmd.exe».

    I have re-compiled the application but its giving the same error message. Kindly help me out.

    Thanx in advance

    Baba

Answers

  • Right, well that’s hardly a succesful build. It doesn’t seem like you’ve got access to delete the intermediate files (from a previous build) in the output directory. Verify that you’ve got permission to access the files, and that they aren’t already opened by an instance of the application you are compiling (or another application, for that matter).

    Anyhoo, the error seems to be in the custom build step — not in the actual application launch. Open the build log and see if that contains more information, or verify that the custom build step is sane.

When I build my application in VC6 IDE, I get this error:

--------------------Configuration: all - Win32 PRO Unicode Release--------------------
The system cannot find the file specified.
Error executing c:windowssystem32cmd.exe.

all.exe - 1 error(s), 0 warning(s)

I don’t have any custom build commands, and this error is particular to this specific project only. Please help.

Smi's user avatar

Smi

13.6k9 gold badges56 silver badges64 bronze badges

asked Feb 4, 2010 at 14:59

buddy's user avatar

1

The Build error was due to the unload of one of our sub-project dsp in our VC dsp file.
We unloaded a sub project that was not required for build. but we didnt remove it from project dsp.
( actually we have series of sub — project dsp files to be built with the main dsp file)

Once it was loaded and built again, the error vanished. Thanks for your suggestions and answers.
Didnt get the reason, but it solved the problem.

answered Jun 23, 2010 at 5:06

buddy's user avatar

buddybuddy

7731 gold badge14 silver badges30 bronze badges

2

It is likely you have a custom build command in one of your applications dependencies.

Review them all, and in each one that has anything, add an ECHO ON as the first step.
Then when you do your build, you will see the details of what command is failing.

The most common problem I have, is when i try to copy header files to a common location automatically. I sometimes get the relative path wrong. Adding a DIR to the post build
is an easy way to show where you are, and can help correct path errors.

answered Mar 30, 2010 at 16:41

EvilTeach's user avatar

EvilTeachEvilTeach

27.9k21 gold badges84 silver badges140 bronze badges

you may be deleted your environment variable

answered Feb 4, 2010 at 15:01

ufukgun's user avatar

ufukgunufukgun

6,8098 gold badges32 silver badges55 bronze badges

1

I changed the build mode from from Win32 Simulation to Win32 Debug and clicked on «Rebuild All» and it worked.

Community's user avatar

answered Jun 2, 2016 at 16:15

Aakz's user avatar

0

Содержание

  1. Error executing cmd exe
  2. Asked by:
  3. Question
  4. cmd.exe throws error «& was unexpected at this time.»
  5. 1 Answer 1
  6. Error executing cmd exe
  7. Answered by:
  8. Question
  9. Answers
  10. Способы устранения ошибки запуска cmd.exe
  11. Причины появления ошибки cmd.exe
  12. Способ 1: Смена учетной записи
  13. Способ 2: Чистка автозагрузки
  14. Способ 3: Удаление NVIDIA GeForce Experience
  15. Способ 4: Обновление драйверов
  16. Способ 5: Обновление библиотек Microsoft
  17. Способ 6: Проверка ПК на вирусы
  18. Способ 7: Проверка системных файлов
  19. Способ 8: Очистка Windows от мусора
  20. Способ 9: Отключение или удаление антивируса
  21. Способ 10: Проверка установки системных обновлений
  22. Способ 11: Восстановление системы
  23. Способ 12: Переустановка ОС

Error executing cmd exe

This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions.

Asked by:

Question

I have a question about visualstudio.com so I think this is the proper forum section to ask about it.

First of all, on the website myname.visualstudio.com/MyAppName/_build/results?buildId=123 I receive an error in EF Core migrations step («Cmd.exe exited with code ‘1’). The command I execute is:

dotnet ef migrations script —project $(Build.SourcesDirectory)MyAppNameMyAppName.csproj —output $(build.artifactstagingdirectory)migrationsscripts.sql —idempotent —startup-project $(Build.SourcesDirectory)MyAppNameMyAppName.csproj

And the command output has this:

dotnet ef migrations script —project D:a1sMyAppNameMyAppName.csproj —output D:a1amigrationsscripts.sql —idempotent —startup-project D:a1sMyAppNameMyAppName.csproj
========================== Starting Command Output ===========================
##[command]»C:windowssystem32cmd.exe» /D /E:ON /V:OFF /S /C «CALL «D:a_temp[here there was some id].cmd»»
Could not execute because the specified command or file was not found.
Possible reasons for this include:
* You misspelled a built-in dotnet command.
* You intended to execute a .NET Core program, but dotnet-ef does not exist.
* You intended to run a global tool, but a dotnet-prefixed executable with this name could not be found on the PATH.
##[error]Cmd.exe exited with code ‘1’.

It was working previously. I haven’t changed the command but it stopped working.

Источник

cmd.exe throws error «& was unexpected at this time.»

so my problem is that when i just ran cmd.exe in terminal, i get «& was unexpected at this time.» Error at the end — looks like this

So the problem is that i’m getting erros in Unity 3D when it wants to run the unity_csc.bat file and compile solution. These errors are exactly the same as the one when i just run cmd.exe — therefore i suspect its not an Unity3D based problem (if you want you can check the Unity3D specific thread here https://forum.unity.com/threads/2-empty-errors-in-console-was-unexpected-at-this-time.799110/ )

Does anyone know why this might be happening ? This also happens when i try to run a .bat file — which I suspect is why i cant compile Unity project

I’m running Windows 10 with all of the latest updates

EDIT:

Since cmd /d does not throw the error, might there be some problem with this registry record ?

In User Folder i do have this Autorun record

1 Answer 1

Stephan has provided the crucial pointer:

It sounds like you have a broken autorun command defined for cmd.exe ; that is, your registry defines a command that is automatically executed whenever you call cmd.exe , and that command causes the syntax error you’re seeing.

Note that such commands are executed irrespective of whether you open an interactive cmd session or invoke via a batch file or pass a command to cmd with /C .

Passing /D to cmd bypasses any autorun commands.

There are two locations in the registry where such a command can be defined, one at the local-machine level (which applies to all users),
HKEY_LOCAL_MACHINESoftwareMicrosoftCommand Processor , and another for the current user only,
HKEY_CURRENT_USERSoftwareMicrosoftCommand Processor , in a value named AutoRun .
If commands are defined in both locations, the HKEY_LOCAL_MACHINE ‘s commands run first.

To list any defined autorun commands:

You can use the following PowerShell snippet to remove autorun commands from both locations, but note that you’ll have to run it with elevation (as administrator), if a local-machine value is present:

Note: The -WhatIf common parameter in the command above previews the operation. Remove -WhatIf , once you’re sure the operation will do what you want.

Источник

Error executing cmd exe

This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions.

Answered by:

Question

i am nt able to compile my application, getting the below information in my output window

Deleting intermediate files and output files for project ‘EIMDB_to_RF3 — Win32 Debug’.
———————Configuration: EIMDB_to_RF3 — Win32 Debug———————
Performing Custom Build Step on .oracle.pc
The system cannot find the path specified.
Error executing c:windowssystem32cmd.exe.

EIMDB_to_RF3.exe — 1 error(s), 0 warning(s)

please help me out to resolve this issue

Answers

You should check the custom build step for the project. You can find it in Project Properties->Configuration Properties->Custom Build Step. Someting in that command line is not being found.

If this isn’t your project then you should actually go and get support from the person who created it since it looks like you don’t know about custom build steps. Whoever made the project would know more about it than you or anyone on this forum, so it would be better getting support from the source.

Источник

Способы устранения ошибки запуска cmd.exe

При попытке открыть командную строку пользователи Windows могут столкнуться с ошибкой запуска приложения. Эта ситуация не совсем стандартна, поэтому даже опытные пользователи не сразу могут обнаружить причины ее возникновения. В этой статье мы разберем, что могло послужить появлению данной проблемы и расскажем, как восстановить работу cmd.

Причины появления ошибки cmd.exe

Окно с ошибкой может появиться вследствие разных причин, часть из которых банальна и легко устраняема. Это ошибки, возникшие после некорректного завершения работы, обновления системы, вирусной атаки, неправильного функционирования антивируса. Более редкие случаи носят индивидуальный характер и сгруппировать их не представляется возможным.

Далее мы разберемся, как решить возникшую проблему запуска cmd.exe, начиная от простых методов и заканчивая сложными.

Настоятельно не рекомендуем скачивать файл cmd.exe в интернете. В подавляющем большинстве подобные файлы заражены вирусом и могут нанести операционной системе вред!

Способ 1: Смена учетной записи

Простейшая ситуация, при которой пользователю не удается запустить исполняемое приложение — ограниченные права пользователя. Это касается стандартных учетных записей, которые могут быть настроены администратором. Обычные профили не имеют полного доступа к ПК и запуск любых приложений, включая cmd, для них может быть заблокирован.

Если вы пользуетесь домашним ПК, попросите пользователя с учетной записью администратора разрешить вашей учетной записи запуск cmd. Либо, если имеете доступ ко всем профилям, созданным на компьютере, выполните вход как администратор. Пользователям рабочих ПК с этим вопросом требуется обратиться к системному администратору.

Способ 2: Чистка автозагрузки

Обязательно просмотрите список автозагрузки. Возможно, там найдутся программы, которые не должны запускаться. Кроме этого вы можете попробовать поочередно отключать через «Диспетчер задач» запущенные приложения и после каждого раза открывать командную строку. Однако сразу стоит отметить, что такой метод помогает далеко не всегда.

Читайте также: Как открыть автозагрузку в Windows XP, Windows 7, Windows 8, Windows 10

Способ 3: Удаление NVIDIA GeForce Experience

По отзывам пользователей порой проблему вызывало дополнительное ПО для видеокарты NVIDIA — GeForce Experience. В определенных случаях проблема сохранялась даже после полной (не поверхностной) переустановки. Это не обязательная программа, поэтому многие юзеры могут без труда от нее избавиться.

Способ 4: Обновление драйверов

Некорректно работающие драйверы — еще одна, пусть и не самая очевидная, причина. Вызвать ошибку cmd может проблемное программное обеспечение разных устройств. В первую очередь выполните обновление драйвера видеокарты.

Довольно часто появлению ошибки способствует проблемный компонент драйвера NVIDIA, поэтому пользователю необходимо выполнить полное удаление, а затем чистую установку.

Если это не помогло, следует выполнить обновление другого ПО.

Способ 5: Обновление библиотек Microsoft

В Виндовс есть файлы, библиотеки и утилиты, которые активно используются системой и могут по разным причинам повлиять на отказ запуска командной строки. К ним относятся DirectX, .NET Framework, Microsoft Visual C++.

Обновите эти файлы вручную, используя официальный сайт Microsoft. Не скачивайте эти файлы со сторонних ресурсов, так как есть большая вероятность установить в систему вирус.

Способ 6: Проверка ПК на вирусы

Вирусы и другое вредоносное ПО, попадая на компьютер пользователя, с легкостью могут заблокировать доступ к командной строке. Тем самым они усложняют пользователю выполнение задач, связанных с восстановлением работы ОС. Вам потребуется провести полное сканирование всех разделов ПК. Используйте для этого установленный антивирус или сканеры.

Способ 7: Проверка системных файлов

За такую проверку отвечает команда, которую требуется запустить через cmd. Поскольку в обычном режиме сделать это невозможно, следует воспользоваться альтернативными методами.

Перед проверкой убедитесь, что запущена служба «Установщик модулей Windows».

    Нажмите Win+R и введите команду:

services.msc

  • Найдите службу «Установщик модулей Windows», нажмите ПКМ и откройте «Свойства».
  • Назначьте состояние — «Запустить», тип запуска — «Вручную».
  • Безопасный режим

      Загрузитесь в безопасном режиме.

    Подробнее: Как войти в безопасный режим на Windows XP, Windows 8 или Windows 10

  • Попробуйте открыть командную строку. Если она запустилась, впишите команду sfc /scannow
  • Найденные поврежденные компоненты будут восстановлены, вам остается перезагрузиться в обычном режиме и проверить работу cmd.exe.
  • Среда восстановления системы

    Если в безопасном режиме cmd по-прежнему не запускается, следует сделать это из режима восстановления. Используя загрузочную флешку или диск, выполните запуск ПК.

      Нажмите сочетание клавиш Shift+F10 для запуска cmd.

    Альтернативный вариант. Во всех современных версиях ОС она открывается одинаково — нажатием на ссылку «Восстановление системы» в нижнем углу слева.

    В Windows 7 выберите «Командная строка».

    В Windows 10 нажмите на «Поиск и устранение неисправностей».

    Затем — «Дополнительные параметры».

    Из списка выберите «Командная строка».
    Поочередно прописывайте следующие команды:

    Запускает приложение DISKPART, работающее с жесткими дисками.

    Выводит список накопителей. Если у вас один HDD с единственным разделом, ввод команды не требуется.

    X — номер диска. Определить, какой диск является системным в среде восстановления, можно по размеру. Команда выбирает конкретный том для дальнейшей работы с ним.

    Отображает детали о разделах жесткого диска с их буквами.

    Определите букву системного раздела, как и в предыдущем случае, по размеру. Это нужно по той причине, что буква диска здесь и в Виндовс могут отличаться. Затем введите:

    Завершает работу с утилитой DISKPART.
    Введите:

    sfc /scannow /OFFBOOTDIR=X: /OFFWINDIR=X:windows

    X — буква системного раздела.

    Если по результатам сканирования Виндовс не смогла обнаружить нарушения целостности, переходите к следующим советам по решению проблемы.

    Способ 8: Очистка Windows от мусора

    В некоторых случаях временные и другие файлы могут отразиться на работоспособности всей системы. Чаще всего это касается работы реестра — неправильное его функционирование влечет за собой возникновение проблемы с командной строкой. Неполадки с реестром могут возникнуть после неправильного удаления программ, использовавших в своей работе cmd.exe.

    Воспользуйтесь встроенными или сторонними инструментами очистки системы от мусора.

    Отдельно уделите внимание чистке реестра. Не забывайте сделать резервные копии.

    Способ 9: Отключение или удаление антивируса

    Этот метод, на первый взгляд, полностью противоречит одному из предыдущих. На самом же деле, антивирусы нередко становятся причинами возникновения ошибки запуска cmd. Особенно часто с этим сталкиваются пользователи бесплатных защитников. Если у вас есть подозрения, что стабильность работы всей системы нарушает именно антивирус, отключите его.

    Если после отключения проблема сохранилась, есть смысл выполнить деинсталляцию программы. Не рекомендуем делать это по стандарту (через «Установку и удаление программ»), так как некоторые файлы могут остаться и продолжить препятствовать работе Виндовс. Выполните полное удаление, желательно, в безопасном режиме.

    Подробнее: Как войти в безопасный режим на Windows XP, Windows 8 или Windows 10

    На нашем сайте уже есть инструкция по полному удалению популярных антивирусов с ПК.

    Способ 10: Проверка установки системных обновлений

    Отключенные или не до конца установленные системные обновления в некоторых случаях провоцируют нестабильную работу системы. Убедитесь, что ОС исправно установила последние апдейты.

    Ранее мы уже рассказывали об обновлении разных версий Виндовс. Ознакомиться со статьями, посвященными этому, вы можете по ссылкам ниже.

    Если система отказывается обновляться, советуем ознакомиться с рекомендациями, решающими данный вопрос.

    Способ 11: Восстановление системы

    Возможно, неправильная установка/удаление ПО или действия пользователя напрямую либо косвенно повлияли на запуск командной строки. Проще всего попробовать откатить состояние системы до момента, когда все функционировало нормально. Выберите точку восстановления, на момент создания которой не производились последние апдейты или другие действия, по вашему мнению, спровоцировавшие возникшую неполадку.

    Подробнее: Как восстановить Windows XP, Windows 8

    Для восстановления других версий Виндовс так же подойдет инструкция по восстановлению Win 8, поскольку принцип работы в этих ОС ничем кардинально не отличается.

    Способ 12: Переустановка ОС

    Радикальное решение, к которому следует прибегать исключительно в тех ситуациях, когда все остальные советы не помогли. На нашем сайте вы можете ознакомиться со статьей, объединяющей в себе установку разных версий Виндовс.

    Обратите внимание, что переустанавливать ее можно двумя вариантами:

      Обновление: установка Windows с сохранением файлов, параметров и приложений — в этом случае все ваши файлы сохранятся в папку Windows.old и вам придется извлекать их оттуда по мере необходимости, а затем удалять ненужные остатки.
  • Выборочная: только установка Windows — форматируется весь системный раздел, включая пользовательские файлы. Выбирая этот метод убедитесь, что все ваши пользовательские файлы хранятся либо на другом диске (разделе), либо они вам не нужны.
  • Источник

    • Remove From My Forums
    • Question

    • Hi,

      i am using Windows7 and working with vc++ language. when i running my program then it shows this types of errors «‘The system cannot find the path specified.

              0 file(s) copied.

      Error executing c:windowssystem32cmd.exe.

      LSimInstaller.exe — 1 error(s), 0 warning(s)».

      any one know about this errors then pls yar let me know.

      • Edited by

        Thursday, February 24, 2011 7:12 AM

    Answers

    • What are you doing with your program? For coding issues ask in the MSDN forums.


      «A programmer is just a tool which converts caffeine into code» CLIP- Stellvertreter http://www.winvistaside.de/

      • Proposed as answer by
        Niki Han
        Friday, February 25, 2011 6:54 AM
      • Marked as answer by
        Vivian Xing
        Wednesday, March 2, 2011 2:36 AM

    • Hi,

      Please contact the following forum to get efficient help.

      http://social.msdn.microsoft.com/Forums/en/winforms/threads

      Regards,

      Niki


      Please remember to click «Mark as Answer» on the post that helps you, and to click «Unmark as Answer» if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

      • Marked as answer by
        Vivian Xing
        Wednesday, March 2, 2011 2:36 AM

    INTELLIGENT WORK FORUMS
    FOR COMPUTER PROFESSIONALS

    Contact US

    Thanks. We have received your request and will respond promptly.

    Log In

    Come Join Us!

    Are you a
    Computer / IT professional?
    Join Tek-Tips Forums!

    • Talk With Other Members
    • Be Notified Of Responses
      To Your Posts
    • Keyword Search
    • One-Click Access To Your
      Favorite Forums
    • Automated Signatures
      On Your Posts
    • Best Of All, It’s Free!

    *Tek-Tips’s functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

    Posting Guidelines

    Promoting, selling, recruiting, coursework and thesis posting is forbidden.

    Students Click Here

    Error executing c:windowssystem32cmd.exe

    Error executing c:windowssystem32cmd.exe

    (OP)

    22 Apr 06 09:51

    Hello Everyone,

    I’m new to C++, so I’m hoping someone here can point me in the right direction. When a perform a «Rebuild All» on my project,I keep receiving the error message below:

    Linking…
       Creating library Debug/AxeBRules.lib and object Debug/AxeBRules.exp
    The system cannot find the path specified.
    Error executing c:windowssystem32cmd.exe.

    AxeBRules.dll — 1 error(s), 0 warning(s)

    I’ve verified that the cmd.exe file was indeed in the correct directory and that I had a path pointing towards it in the executable directory. Has anyone else ever experienced this error? Any help would be greatly appreciated.

    Thanks in advance
    Jason

    Red Flag Submitted

    Thank you for helping keep Tek-Tips Forums free from inappropriate posts.
    The Tek-Tips staff will check this out and take appropriate action.

    Join Tek-Tips® Today!

    Join your peers on the Internet’s largest technical computer professional community.
    It’s easy to join and it’s free.

    Here’s Why Members Love Tek-Tips Forums:

    • Tek-Tips ForumsTalk To Other Members
    • Notification Of Responses To Questions
    • Favorite Forums One Click Access
    • Keyword Search Of All Posts, And More…

    Register now while it’s still free!

    Already a member? Close this window and log in.

    Join Us             Close

    • Forum
    • Windows Programming
    • Visual Studio 6.0, C/C++ Build errors

    Visual Studio 6.0, C/C++ Build errors

    Hello,

    I am using Visual Studio 6.0, SP6 for this project on a Windows 7 Ultimate Dell desktop PC to build and run a C/C++ program originally developed in Visual Studio 6.0 environment. I do have Visual Studio 2005, 2010, 2012, 2013 and 2015 pro versions.

    Here is a link of where to get this source code: https://sourceforge.net/projects/mmm3/files/magic/2.94%20b19/

    Here is what I get when I try to BuildBuild All:

    
    --------------------Configuration: About - Win32 Release--------------------
    Compiling resources...
    Compiling...
    StdAfx.cpp
    Compiling...
    About.cpp
    AuthorPage.cpp
    GuestbookPage.cpp
    SFPage.cpp
    StatLink.cpp
    VersionPage.cpp
    Generating Code...
    Linking...
       Creating library ..Release/About.lib and object ..Release/About.exp
    The system cannot find the file specified.
                         Ultimate Packer for eXecutables
             Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002
    UPX 1.23w        Markus F.X.J. Oberhumer & Laszlo Molnar         Sep 5th 2002
            File size         Ratio      Format      Name
       --------------------   ------   -----------   -----------
    upx: ..DistribAbout.dll: FileNotFoundException: ..DistribAbout.dll
    Packed 0 files.
    Error executing c:windowssystem32cmd.exe.
    
    Magic.exe - 1 error(s), 0 warning(s)
    

    Here is the contents of the .PLG file after Rebuild All:

    
    --------------------Configuration: About - Win32 Release--------------------
    
    Command Lines
    
    Creating command line "rc.exe /l 0x409 /fo"Release/About.res" /d "NDEBUG" /d "_AFXDLL"
     "C:UsersAdministrator.Tony-PCDocumentsVisual Studio 60magic-294b19AboutAbout.rc"" 
    Creating temporary file "c:sp6tempRSP620C.tmp" with contents
    [
    /nologo /MD /W4 /O1 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_WINDLL" /D "_AFXDLL" /D
     "_USRDLL" /Fp"Release/About.pch" /Yu"stdafx.h" /Fo"Release/" /Fd"Release/" /FD /c 
    "C:UsersAdministrator.Tony-PCDocumentsVisual Studio 60magic-294b19AboutAbout.cpp"
    "C:UsersAdministrator.Tony-PCDocumentsVisual Studio 60magic-294b19AboutAuthorPage.cpp"
    "C:UsersAdministrator.Tony-PCDocumentsVisual Studio 60magic-294b19AboutGuestbookPage.cpp"
    "C:UsersAdministrator.Tony-PCDocumentsVisual Studio 60magic-294b19AboutSFPage.cpp"
    "C:UsersAdministrator.Tony-PCDocumentsVisual Studio 60magic-294b19AboutStatLink.cpp"
    "C:UsersAdministrator.Tony-PCDocumentsVisual Studio 60magic-294b19AboutVersionPage.cpp"
    ]
    Creating command line "cl.exe @c:sp6tempRSP620C.tmp" 
    Creating temporary file "c:sp6tempRSP620D.tmp" with contents
    [
    /nologo /MD /W4 /O1 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_WINDLL" /D "_AFXDLL" /D
     "_USRDLL" /Fp"Release/About.pch" /Yc"stdafx.h" /Fo"Release/" /Fd"Release/" /FD /c 
    "C:UsersAdministrator.Tony-PCDocumentsVisual Studio 60magic-294b19AboutStdAfx.cpp"
    ]
    Creating command line "cl.exe @c:sp6tempRSP620D.tmp" 
    Creating temporary file "c:sp6tempRSP620E.tmp" with contents
    [
    version.lib /nologo /subsystem:windows /dll /incremental:no /pdb:"..Release/About.pdb"
     /machine:I386 /def:".About.def" /out:"..Release/About.dll" /implib:"..Release/About.lib" 
    ".ReleaseAbout.obj"
    ".ReleaseAuthorPage.obj"
    ".ReleaseGuestbookPage.obj"
    ".ReleaseSFPage.obj"
    ".ReleaseStatLink.obj"
    ".ReleaseStdAfx.obj"
    ".ReleaseVersionPage.obj"
    ".ReleaseAbout.res"
    ]
    Creating command line "link.exe @c:sp6tempRSP620E.tmp"
    Output Window
    
    Compiling resources...
    Compiling...
    StdAfx.cpp
    Compiling...
    About.cpp
    AuthorPage.cpp
    GuestbookPage.cpp
    SFPage.cpp
    StatLink.cpp
    VersionPage.cpp
    Generating Code...
    Linking...
       Creating library ..Release/About.lib and object ..Release/About.exp
    Creating temporary file "c:sp6tempRSP7917.bat" with contents
    [
    @echo off
    copy UsersAdministrator.Tony-PCDocumentsVisual Studio 60magic-294b19ReleaseAbout.dll  ..Distrib
    ..BINupx ..DistribAbout.dll
    ]
    Creating command line "c:sp6tempRSP7917.bat"
    
    The system cannot find the file specified.
                         Ultimate Packer for eXecutables
             Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002
    UPX 1.23w        Markus F.X.J. Oberhumer & Laszlo Molnar         Sep 5th 2002
    
            File size         Ratio      Format      Name
       --------------------   ------   -----------   -----------
    upx: ..DistribAbout.dll: FileNotFoundException: ..DistribAbout.dll
    
    Packed 0 files.
    Error executing c:windowssystem32cmd.exe.
    
    Results
    
    Magic.exe - 1 error(s), 0 warning(s)
    

    Any help that anyone can provide would be gratefully appreciated.

    Thanks,
    Tony

    Last edited on

    Create the directory «C:sp6temp» and give it write permission for the user you’re running visual studio as.

    you can download vs2005 2008 or other by search msdn itellyou, then rebuid it

    Topic archived. No new replies allowed.

    Понравилась статья? Поделить с друзьями:
  • Error executable is not specified
  • Error exe 001 samsung smart tv как устранить
  • Error exe 001 samsung smart tv как исправить
  • Error eperm operation not permitted scandir
  • Error exception что это java