Monday 16 April 2018

Soldar metales

Soldar:

* Con electrodos o MMA (Manual Metal Arc welding), el aparato puede ser con transformador (pesa más de 25 Kg) o con inverter (pesa desde 2,5 Kg).
Precios inversor desde 100 euros y 60 con transformador

Polaridad directa: electrodo en el negativo y masa en el positivo.

* TIG -  tungsten inert gas, el tungsten no se consume
No escoria, no salpicaduras. Se puede soldar casi todo típo de materiales.
Se puede empezar con un soldador inverter, los hay con opción TIG pero no es necesario. El de transformador no vale.
Necesitas: inverter, antocha TIG (compatible con inverter), capuchón, difusor, gas (Argón 100%, Helio 100% o mezcla de ambos).
Varillas de aporte (se puede hacer sin aportar).


soldadura MIG/MAG (Metal Inert Gas o Metal Active Gas, dependiendo del gas que se inyecte) también denominada GMAW (Gas Metal Arc Welding o «soldadura a gas y arco metálico») es un proceso de soldadura por arco bajo gas protector con electrodo consumible.



TIG
gas inerte (TIG -  tungsten inert gas)

Soldadura MIG/MAG

Efe Uno Joaquin - buscar Soldadura
https://www.youtube.com/user/f1joaquin/search?query=soldadura

Tig 7, Practica de soldadura con apoyo (con y sin aporte)
https://youtu.be/bV2689fO6dY?t=376

Soldador para baterías 18650
https://youtu.be/d0eJOHohzR0?t=1168
Curioso

DIY Battery Spot Welder - Demonstration & Explanation
https://www.youtube.com/watch?v=o1NFbchHeM8




Tuesday 3 April 2018

BCDEDIT for dummies and Bad_System_Config_Info in windows

Thanks to Txomin !!


BCDEDIT for dummies
http://sourcedaddy.com/windows-7/how-to-use-bcdedit.html



https://answers.microsoft.com/en-us/windows/forum/all/windows-7-0x00000074-startup-blue-screen/e9e412ae-013c-4fb7-93a4-e369dd1718dc

Como arreglarlo, dos aproxmaciones

1) BCEDIT:

- Esto es lo que decías, ¿no?

http://www.tomshardware.co.uk/forum/58615-63-system-config-info-heeeelp

>> So... I went to research - AGAIN - hahah! But God is so good and He have such a infinite mercy that I went to a page that perfectly explained everything I needed to know, STEP BY STEP of what to do in this particulary situation (the guy had the same problem! and - as I saw on the comment's space - a lot of people have this issue as well!). Check it out:
(by the way, his page here: http://nilcemar.blogspot.com.br/2012/04/corrigir-badsystemconfiginfo-no-windows.html)

~~~~ Bad_System_Config_Info ~~~~

1) Start the "inicialization repair" (or installation repair - I dont know the name in English,
I just try to translate but I cant say if this one is the right term to use).
2) It will try to fix the problem without success. Dont worry, go to the "system recovery options"
3) Logon as the adminitrator
4) Go to the "command prompt" and type "bcdedit /deletevalue {default} numproc" (without quots) and press "enter"
5) Now type "bcdedit /deletevalue {default} truncatememory" (without quots) and press enter again
6) Close the prompt screen and reboot! THAT'S IT! It is all that takes to Wind goes normal again!
 After these steps I didnt have anymore problem!!! PRAISE THE LORD! I couldnt get this far without Him!!!

2) Registro

https://www.easeus.com/computer-instruction/fix-bad-system-config-info-error.html
Method 3. Fix corrupted Windows Registry by CMD to solve "Bad_System_Config_Info" error


mismo consejo aquí:

https://www.xtremerain.com/fix-bad-system-config-info/


4. Fixing Corrupted Registries

BAD_SYSTEM_CONFIG_INFO can be caused by corrupted registries. So, You should fix the registry related to 0x074 error. There are many third party registry fixers. But you should use known and trusted programs. You can use CCleaner to fix registries. But never forget to backup before repairing.

But, If you can’t access windows, You will need to do following things to repair windows registries.

    Open command prompt using windows bootable media like method 3.
    Now, Run the following commands and restart your PC.

ren X:\Windows\System32\config\DEFAULT DEFAULT.old

ren X:\Windows\System32\config\SAM SAM.old

ren X:\Windows\System32\config\SECURITY SECURITY.old

ren X:\Windows\System32\config\SOFTWARE SOFTWARE.old

ren X:\Windows\System32\config\SYSTEM SYSTEM.old

copy X:\Windows\System32\config\RegBack\DEFAULT X:\Windows\System32\config\

copy X:\Windows\System32\config\RegBack\SAM X:\Windows\System32\config\

copy X:\Windows\System32\config\RegBack\SECURITY X:\Windows\System32\config\

copy X:\Windows\System32\config\RegBack\SYSTEM X:\Windows\System32\config\

copy X:\Windows\System32\config\RegBack\SOFTWARE

Monday 2 April 2018

The Trust Relationship Between this Workstation and the Primary Domain Failed


PowerShell version:
$PSVersionTable.PSVersion

Ojo en todo lo de abajo el parámetro -Credential sólo funciona si
PowerShell >= 3

Resumen para el caso peor, no hace falta reiniciar !! :
{
 En la WorkStation, logarse como *administrador de dominio* .

 ' Ver como está el tema:
 Test-ComputerSecureChannel
 Test-ComputerSecureChannel -verbose

 Test-ComputerSecureChannel -Repair

 Reset-ComputerMachinePassword

 ' Ver como está el tema:
 Test-ComputerSecureChannel

 ' Ver como está el tema:
 Entrar con mi usuario, chk con que contraseña deja.
 Bloquear el ordenador y comprobar con que deja acceder .. y a J:
}
  

You can prevent the error: “The trust relationship between this…” with a domain GPO.

Computer Configuration > Policies > Windows Settings > Security Settings > Local Policies > Security Options

Domain member: Disable machine account password changes

Domain member: Maximum machine account password age




Get-ADComputer -Identity SBS2K11 -Properties *

 -Credential si PowerShell >= 3
Test-ComputerSecureChannel
Test-ComputerSecureChannel -verbose
Test-ComputerSecureChannel -Repair




Local:
 Test-ComputerSecureChannel -Repair

Remoto:
 Invoke-Command -ComputerName REMOTECOMPUTERHERE -ScriptBlock { Test-ComputerSecureChannel -Repair } -Credential (Get-Credential -UserName 'administrator' -Message 'User')

 o
 {
  $localCredential = Get-Credential
  Invoke-Command -ComputerName REMOTECOMPUTERHERE -ScriptBlock { Test-ComputerSecureChannel -Repair } -Credential $localCredential

 }

A todos comprobar en remoto:
{
 $localCredential = Get-Credential -- las guarda pero no las muestra

 @(Get-AdComputer -Filter *).foreach({

  $output = @{ ComputerName = $_.Name }

  if (-not (Test-Connection -ComputerName $_.Name -Quiet -Count 1)) { $output.Status = 'Offline'
   } else {

   $trustStatus = Invoke-Command -ComputerName $_.Name -ScriptBlock { Test-ComputerSecureChannel } -Credential $localCredential
   $output.Status = $trustStatus
  }

  [pscustomobject]$output

 })
}


Reset-ComputerMachinePassword

Reset-ComputerMachinePassword [-Server ] [-Credential ]


Lo anterior se puede hacer también con:

 NETDOM RESETPWD   Reset the machine account password for a domain controller
 NETDOM RESET      Reset the secure connection between a workstation and a DC
 NETDOM VERIFY     Verify the secure connection between a workstation and a DC
 NetDom is available as part of the RSAT tools or by default, with the AD DS or AD LDS server roles.

 To enable NETDOM: Control Panel | Programs and Features | Windows features | Remote Server Administration Tools | Role Administration Tools | AD DS and AD LDS Tools | select AD DS Tools.

}