X-Recipient: archive-cygwin AT delorie DOT com DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E82AA385B52E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com; s=default; t=1683724050; bh=7XJwLeYQ8pA7IJ2QGf+1PDfTcvT6Exsjq7lG0t4/dmo=; h=References:In-Reply-To:Date:Subject:To:Cc:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From:Reply-To:From; b=Sz3uJ4sOFAgrbtBcZGHEhI8WKooT+IwIXJZB4J7V2FbGVSPuF8Nt6OvCAicCBBo+S UmNHxlClGzGjmfdWTy57jblsJsK53EIczVoXghF4ey7/xGd3UTZ8oqAyPECGlBo35a 8rcfhmWy/RsaRM6tci/noq/33+Pss4h6/g4geGxI= X-Original-To: cygwin AT cygwin DOT com Delivered-To: cygwin AT cygwin DOT com DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org B91E6385770E X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1683724009; x=1686316009; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=Iks8xk9dRW7uhjV4efYKJkXsIFHR4N+BSN+lRR8spig=; b=LiQVYXPUVU5f4+ZcgkBAdnozUBknFHi+pUKfkIPoKV9witM9Xd0pNYjJCO3cXsZ3o6 CEz6HrYLGYa3A2K3cOdYcXqfXv7WKU+7mOxIref2hiHq7cdzvmU5ca9qy2IpwPDp1fhW KxDQmMFNR0avNnavEL0hUpv4BJdyMD6BglL4RBjoRGnTISd1mIYCOFnUnstSrxCZ8DSA iCwU2RFG04u/wfasJ8g+cd2+XyqVMddityHAKlOt9RJXQHMfvBH6bJ4A3w3J3Cyp2MEW NkVauprxThLvBf90Kic8k9dLAR+Y3IvalpPvXmV5RGmb7hAqKPTyKIwW5VEiffnz1MeC 2chQ== X-Gm-Message-State: AC+VfDzn1F+TVD7GYAxp4nZaaIDD6B4/PePHBxMoSUbELwe9+M2fDtli L/8ledAgQ0KAfKM6ZA/S6nTNoxAyie+GCDaJTWBxg8TR7do= X-Google-Smtp-Source: ACHHUZ6bc7ASSSfeKjLyXMu0yp5FpfdfI8vTo1izKh5Tj41jaR2JYbX/GuJ0v9MSebTzC7wQF+fJCK4sx/QsvNa0TyQ= X-Received: by 2002:adf:fe51:0:b0:306:42e2:5ec3 with SMTP id m17-20020adffe51000000b0030642e25ec3mr12269717wrs.6.1683724009132; Wed, 10 May 2023 06:06:49 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: Date: Wed, 10 May 2023 09:06:37 -0400 Message-ID: Subject: Re: Cygwin not present on control panel To: rappard AT dds DOT nl Cc: cygwin AT cygwin DOT com X-Spam-Status: No, score=1.4 required=5.0 tests=BAYES_20, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, HTML_MESSAGE, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: cygwin AT cygwin DOT com X-Mailman-Version: 2.1.29 List-Id: General Cygwin discussions and problem reports List-Archive: List-Post: List-Help: List-Subscribe: , From: Anderson via Cygwin Reply-To: Anderson Content-Type: text/plain; charset="utf-8" Sender: "Cygwin" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by delorie.com id 34AD7tdA015621 Thanks for the fast answer. That´s my install script SET SITE=https://linorg.usp.br/cygwin SET ROOTDIR=C:/cygwin SET INSTALL_FOLDER=%cd% SET LOCALDIR=%INSTALL_FOLDER% if exist C:\cygwin ( continue ) else ( if exist C:\cygwin64 ( SET CYGWIN_ROOTDIR=C:\cygwin64 ) else ( echo "CYGWIN nao esta instalado no local padrao" ) ) SET PACKAGES=_autorebase,adwaita-icon-theme,alternatives,at-spi2-core,base-cygwin,dos2unix ::: These are necessary for apt-cyg install, do not change. Any duplicates will be ignored. SET PACKAGES=%PACKAGES%,wget,tar,gawk,bzip2,subversion :::Instala o Cygwin padrao start /WAIT %INSTALL_FOLDER%/programas_para_instalar/setup-x86_64.exe --verbose --quiet-mode --no-desktop --download --no-version-check --force-current --no-verify --local-install -s %SITE% -l "%LOCALDIR%" -R "%ROOTDIR%" ::: Instala os pacotes adicionais no Cygwin start /WAIT %INSTALL_FOLDER%/programas_para_instalar/setup-x86_64.exe --verbose --quiet-mode --no-desktop --download --no-version-check --force-current --no-verify --local-install -s %SITE% -l "%LOCALDIR%" -R "%ROOTDIR%" -P %PACKAGES% exit Em qua., 10 de mai. de 2023 às 08:41, escreveu: > Hi, > > > I create a script to install cygwin by command line. It works fine. > > Can you post your script here? > > > However, when i try to uninstall the Cygwin, é see that cygwin was not > > present on Windows control panel softwares and programs. > > I used the normal setup-x86_64.exe procedure, and it's not in my > appwiz.cpl panel either. > > > 1)How i uninstall cygwin on this case? > > I usually simply delete my C:\bin\cygwin64\ folder and the registry > keys. Off the top of my head: > ...\VirtualStore\MACHINE\SOFTWARE\WOW6432Node\Cygwin, > HKEY_CURRENT_USER\Software\Cygwin and one or two others. > > --Martin > -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation: https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple