Ir ao conteúdo
  • Cadastre-se

Dresh

Membro Júnior
  • Posts

    19
  • Cadastrado em

  • Última visita

posts postados por Dresh

  1. 14 minutos atrás, Rei da Low disse:

    @Dresh Tem um botao com logo do windows no seu teclado, aperta ele + R;

    digite "powershell";

    aperte a tecla do seu teclado escrito Enter;

    Digite "Set-ExecutionPolicy unrestricted";

    aperte a tecla do seu teclado escrito Enter;

    responda a pergunta de forma positiva, geralmente é "A" ou "Y"

    aperte a tecla do seu teclado escrito Enter;

    crie um novo arquivo a.txt na area de trabalho;

    renomeie para a.ps1;

    edite esse arquivo no notepad++ colando o codigo que eu fiz;

    salve (ctrl - s);

    clique com direito no arquivo e selecione executar no powershell;

     

    a.PNG.1b29aff3285ff9325644063539c16bce.PNG

    b.thumb.PNG.dfad03a2f7b4a9c20891d9e38ec30a40.PNGc.PNG.36eb07f3238f9b0da7e92ecc7e478c4c.PNGe.thumb.PNG.39f6ffc8cdde298e4c7172cab80ddee7.PNG

    d.PNG

    1996468582_2020-10-13(3).thumb.png.d95060804408707028ea2927d7c909c0.png

     

    Apareceu essa mensagem...

  2. Em 10/10/2020 às 11:37, Rei da Low disse:

    @Dresh  execute o código abaixo no powershell

    
    Set-ExecutionPolicy unrestricted

     

    salve o código abaixo para algumacoisa.ps1 e execute no powershell

     

    
    Set-ExecutionPolicy unrestricted
    Write-Host "Creating PSDrive 'HKCR' (HKEY_CLASSES_ROOT). This will be used for the duration of the script as it is necessary for the removal and modification of specific registry keys."
    New-PSDrive  HKCR -PSProvider Registry -Root HKEY_CLASSES_ROOT
    
    # Enable Controlled Folder Access (Defender Exploit Guard feature) - Applicable since 1709, requires Windows Defender to be enabled
    Write-Output "Enabling Controlled Folder Access..."
    Set-MpPreference -EnableControlledFolderAccess Enabled -ErrorAction SilentlyContinue
    
    Function itemDelete($path, $desc) {
    	Write-Output ($desc) 
    	
    	if (!($path | Test-Path)) { 
    		write-Host -ForegroundColor Green ($path + " dont exists.")
    		return	
    	}
    
    	takeown /F $path	
    
    	$Acl = Get-ACL $path
    	$AccessRule= New-Object System.Security.AccessControl.FileSystemAccessRule("everyone","FullControl","ContainerInherit,Objectinherit","none","Allow")
    	$Acl.AddAccessRule($AccessRule)
    	Set-Acl $path $Acl
    
    	$Acl = Get-ACL $path
    	$username = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name
    	$AccessRule= New-Object System.Security.AccessControl.FileSystemAccessRule($username,"FullControl","ContainerInherit,Objectinherit","none","Allow")
    	$Acl.AddAccessRule($AccessRule)
    	Set-Acl $path $Acl
    
    	$files = Get-ChildItem $path
    	foreach ($file in $files) {
    		$Item = $path + "\" + $file.name
    
    		takeown /F $Item
    
    		$Acl = Get-ACL $Item
    		$AccessRule= New-Object System.Security.AccessControl.FileSystemAccessRule("everyone","FullControl","Allow")
    		$Acl.AddAccessRule($AccessRule)
    		Set-Acl $Item $Acl
    
    		$Acl = Get-ACL $Item
    		$username = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name
    		$AccessRule= New-Object System.Security.AccessControl.FileSystemAccessRule($username,"FullControl","Allow")
    		$Acl.AddAccessRule($AccessRule)
    		Set-Acl $Item $Acl
    
    		$whatIs = (Get-Item $Item) -is [System.IO.DirectoryInfo]
    		
    		if ($whatIs -eq $False){
    			Set-ItemProperty $Item -name IsReadOnly -value $false
    			try {
    				Remove-Item -Path $Item -Recurse -Force
    				write-Host -ForegroundColor Green ($file.name + " deleted.")
    			}
    			catch {			
    				write-Host -ForegroundColor red ($file.name + " NOT deleted.") 
    
    			}
    		}		
    	}
    }
    
    	
    Function RegChange($path, $thing, $value, $desc, $type) {
    	Write-Output ($desc)	
    	
       # String: Specifies a null-terminated string. Equivalent to REG_SZ.
       # ExpandString: Specifies a null-terminated string that contains unexpanded references to environment variables that are expanded when the value is retrieved. Equivalent to REG_EXPAND_SZ.
       # Binary: Specifies binary data in any form. Equivalent to REG_BINARY.
       # DWord: Specifies a 32-bit binary number. Equivalent to REG_DWORD.
       # MultiString: Specifies an array of null-terminated strings terminated by two null characters. Equivalent to REG_MULTI_SZ.
       # Qword: Specifies a 64-bit binary number. Equivalent to REG_QWORD.
       # Unknown: Indicates an unsupported registry data type, such as REG_RESOURCE_LIST.
    
    	$type2 = "String"
    	if (-not ([string]::IsNullOrEmpty($type)))
    	{
    		$type2 = $type
    	}
    	
    	If (!(Test-Path ("HKLM:\" + $path))) {
    		New-Item -Path ("HKLM:\" + $path) -Force
    	}
    	If (!(Test-Path ("HKCU:\" + $path))) {
            New-Item -Path ("HKCU:\" + $path) -Force
        }
    	
        If (Test-Path ("HKLM:\" + $path)) {
            Set-ItemProperty ("HKLM:\" + $path) $thing -Value $value -Type $type2 -PassThru:$false
        }
    	If (Test-Path ("HKCU:\" + $path)) {
            Set-ItemProperty ("HKCU:\" + $path) $thing -Value $value -Type $type2 -PassThru:$false
        }	
    
    }
    
    #This will self elevate the script so with a UAC prompt since this script needs to be run as an Administrator in order to function properly.
    If (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]'Administrator')) {
        Write-Host "You didn't run this script as an Administrator. This script will self elevate to run as an Administrator and continue."
        Start-Sleep 1
        Write-Host "                                               3"
        Start-Sleep 1
        Write-Host "                                               2"
        Start-Sleep 1
        Write-Host "                                               1"
        Start-Sleep 1
        Start-Process powershell.exe -ArgumentList ("-NoProfile -ExecutionPolicy Bypass -File `"{0}`"" -f $PSCommandPath) -Verb RunAs
        Exit
    }
    
    function killProcess{ 
    	param($processName)
    	Write-Output $("Trying to gracefully close " + $processName + " ...")
    
    	$firefox = Get-Process $processName -ErrorAction SilentlyContinue
    	if ($firefox) {
    		$firefox.CloseMainWindow()
    		Sleep 3
    		if (!$firefox.HasExited) {
    			Write-Output $("Killing " + $processName + " ...")
    			$firefox | Stop-Process -Force
    		}
    	}
    	return
    }
    
    reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v ctfmon /t REG_SZ /d CTFMON.EXE /f | Out-Null
    killProcess("explorer");
    killProcess("SearchUI");
    RegChange "System\CurrentControlSet\Services\WpnUserService*" "Start" "4" "Fixing WpnUserService freezing start menu..." "DWord"
    itemDelete "$env:LocalAppData\Packages\Microsoft.Windows.Cortana_cw5n1h2txyewy\Settings" "Clearing Cortana settings..."
    start explorer.exe	
    pause

     

    Boa noite parceiro, detalha mais como eu faço esse procedimento...

  3. Desde ontem estou com esse problema no meu computador, minha barra de tarefas está desabilitada para algumas funções, por exemplo, não consigo criar um atalho, nem fechar um programa utilizando o botão direito do mouse, pois o mesmo não funciona exclusivamente na barra de tarefas. Já o botão esquerdo, funciona no canto inferior esquerdo, por exemplo abrir o chrome, windows e meus documentos, mas não consigo abrir o relógio nem as notificações no canto inferior direito, e o problema não é no mouse, pois ele está funcionando perfeitamente na área de trabalho e nos outros processos do computador...

  4. Gabinete: Gamer NOX Infinity Alpha, RGB Rainbow, 1 Cooler, Lateral em Vidro.

    Placa-Mãe: Gigabyte Aorus B360M Aorus Gaming 3, Intel LGA 1151, mATX, DDR4.

    Processador: Intel Core i5-9400F Coffee Lake, Cache 9MB, 2.9GHz (4.1GHz Max Turbo), LGA 1151, Sem Vídeo.

    Fonte: Corsair 550W 80 Plus Bronze CX550.

    Memória: HyperX Fury, 8GB, 2666MHz, DDR4, CL16, Preto.

    SSD: HP EX900, 500GB, M.2, PCIe NVMe, Leituras: 2100Mb/s e Gravações: 1500Mb/s.

    Placa de Vídeo: Gigabyte GTX 1660 Super OC NVIDIA Geforce 6G, GDDR6.

     

    Esses itens são compatíveis com a placa-mãe? Alguma recomendação a fazer? Até o momento só chegou o processador, monitor, teclado e mouse.

     

     

  5. Efetuei uma compra na Kabum, porém por um descuido comprei a placa de vídeo mini ao invés da normal sendo que as duas estavam saindo pelo mesmo preço. A questão é, vale a pena eu devolver o produto, esperar todo esse tempo do processo de devolução e comprar a versão normal da placa, tendo que desembolsar em torno de R$ 100,00 a mais por conta do valor que já subiu, evitando problemas futuros de aquecimento e até perda na revenda por conta do preconceito com esse tipo de placa de vídeo ou compensa eu ficar com essa placa de vídeo mini supondo que ela vai atender minhas expectativas já que as configurações são as mesmas?

     

    Segue o link das duas placas:

    Essa foi a placa de vídeo normal: https://m.kabum.com.br/produto/101039/placa-de-v-deo-gigabyte-nvidia-geforce-gtx-1660-oc-6g-gddr5-gv-n1660oc-6gd

    Essa foi a placa de vídeo mini: https://m.kabum.com.br/produto/109641/placa-de-v-deo-gigabyte-nvidia-geforce-gtx-1660-mini-itx-oc-6gb-gddr5-gv-n1660ixoc-6gd

     

  6. Boa tarde! Estou montando uma máquina com as seguintes configurações:

    - Gabinete Gamer Pichau Kronen RGB Lateral Vidro Temp, PGKN-01 RGB

    - Placa-mãe Asus TUF B360M-PLUS GAMING/BR DDR4 Socket LGA1151 Chipset Intel B360

    - HD Toshiba P300 1TB 3.5" Sata III 6GB/s, HDWD110XZSTA

    - Memoria Team Group T-Force Dark Z 8GB (1x8) DDR4 3000MHz Cinza, TDZGD48G3000HC16C01

    - Fonte Corsair CV Series CV550 80 Plus Bronze 550W, CP-9020210-BR

    - SSD Kingston A400 240GB SATA 3 2.5, SA400S37/240G

    - Processador Intel Core i5-9400F Hexa-Core 2.9GHz (4.1GHz Turbo) 9MB Cache LGA1151, BX80684I59400F

    - Placa de Vídeo Gigabyte NVIDIA GeForce GTX 1660 OC 6G, GDDR5 - GV-N1660OC-6GD

  7. Estou montando uma máquina com as seguintes configurações:

    - Gabinete Gamer Pichau Kronen RGB Lateral Vidro Temp, PGKN-01 RGB

    - placa-mãe Asus TUF B360M-PLUS GAMING/BR DDR4 Socket LGA1151 Chipset Intel B360

    - HD Toshiba P300 1TB 3.5" Sata III 6GB/s, HDWD110XZSTA

    - Memoria Team Group T-Force Dark Z 8GB (1x8) DDR4 3000MHz Cinza, TDZGD48G3000HC16C01

    - Fonte Corsair CV Series CV550 80 Plus Bronze 550W, CP-9020210-BR

    - SSD Kingston A400 240GB SATA 3 2.5, SA400S37/240G

    - Processador Intel Core i5-9400F Hexa-Core 2.9GHz (4.1GHz Turbo) 9MB Cache LGA1151, BX80684I59400F

    - Placa de Vídeo Gigabyte NVIDIA GeForce GTX 1660 OC 6G, GDDR5 - GV-N1660OC-6GD

    A temperatura da máquina é estável até que nível? Vou precisar comprar algum Air Cooler ou Water Cooler a mais para que a temperatura da máquina se mantenha estável?

Sobre o Clube do Hardware

No ar desde 1996, o Clube do Hardware é uma das maiores, mais antigas e mais respeitadas comunidades sobre tecnologia do Brasil. Leia mais

Direitos autorais

Não permitimos a cópia ou reprodução do conteúdo do nosso site, fórum, newsletters e redes sociais, mesmo citando-se a fonte. Leia mais

×
×
  • Criar novo...