ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. JasGot
    3. Posts
    J
    • Profile
    • Following 0
    • Followers 2
    • Topics 181
    • Posts 1,458
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Any Way to Automate Adding a New Computer to an AD Group?

      @wrx7m said in Any Way to Automate Adding a New Computer to an AD Group?:

      @JasGot Wouldn't that require me to specify the DN of the computer object every time?

      Maybe, can you show an example? Also, if you put the results of the dsquery into an environment variable, it might make it easier. Still need to see what your script needs to look like.

      posted in IT Discussion
      J
      JasGot
    • RE: Yealink T46S Missing Opus Codec in 66.84.0.15 Firmware

      @lansalot said in Yealink T46S Missing Opus Codec in 66.84.0.15 Firmware:

      Hope this helps - I registered just to post this for you!
      Jon

      Now that's a sweet first post!

      posted in IT Discussion
      J
      JasGot
    • RE: Fitness and Weightloss

      Alright. You've all inspired me to quit the "hold steady" phase and make another move downward......:)

      posted in Water Closet
      J
      JasGot
    • RE: Any Way to Automate Adding a New Computer to an AD Group?

      @wrx7m said in [Any Way to Automate Adding a New Computer to an AD Group?]

      Hmm. I get unrecognized command or whatever the error is when it doesn't know what it is.

      Okay. Have you worked on the GPO option yet? Another option is to Create an OU and create a GPO to add computers to a specific group.

      Then add a PS command to a startup/logon script to move the computer to a new OU:

      Move-ADObject -Identity "CN=wrx7m-PC,OU=Sales,DC=enterprise,DC=com" -TargetPath "CN=Computers,DC=Enterprise,DC=Com
      
      posted in IT Discussion
      J
      JasGot
    • RE: Windows 7 Cannot Update

      Well, just for kicks, here's the script we run. It's another possible fix to your problem.
      Reset-WindowsUpdate.ps1

      <#
      .SYNOPSIS
      Reset-WindowsUpdate.ps1 - Resets the Windows Update components
      
      .DESCRIPTION 
      This script will reset all of the Windows Updates components to DEFAULT SETTINGS.
      
      .OUTPUTS
      Results are printed to the console. Future releases will support outputting to a log file. 
      
      .NOTES
      Written by: Ryan Nemeth
      
      Find me on:
      
      * My Blog:	http://www.geekyryan.com
      * Twitter:	https://twitter.com/geeky_ryan
      * LinkedIn:	https://www.linkedin.com/in/ryan-nemeth-b0b1504b/
      * Github:	https://github.com/rnemeth90
      * TechNet:  https://social.technet.microsoft.com/profile/ryan%20nemeth/
      
      Change Log
      V1.00, 05/21/2015 - Initial version
      V1.10, 09/22/2016 - Fixed bug with call to sc.exe
      V1.20, 11/13/2017 - Fixed environment variables
      #>
      
      
      $arch = Get-WMIObject -Class Win32_Processor -ComputerName LocalHost | Select-Object AddressWidth
      
      Write-Host "1. Stopping Windows Update Services..."
      Stop-Service -Name BITS
      Stop-Service -Name wuauserv
      Stop-Service -Name appidsvc
      Stop-Service -Name cryptsvc
      
      Write-Host "2. Remove QMGR Data file..."
      Remove-Item "$env:allusersprofile\Application Data\Microsoft\Network\Downloader\qmgr*.dat" -ErrorAction SilentlyContinue
      
      Write-Host "3. Renaming the Software Distribution and CatRoot Folder..."
      Rename-Item $env:systemroot\SoftwareDistribution SoftwareDistribution.bak -ErrorAction SilentlyContinue
      Rename-Item $env:systemroot\System32\Catroot2 catroot2.bak -ErrorAction SilentlyContinue
      
      Write-Host "4. Removing old Windows Update log..."
      Remove-Item $env:systemroot\WindowsUpdate.log -ErrorAction SilentlyContinue
      
      Write-Host "5. Resetting the Windows Update Services to defualt settings..."
      "sc.exe sdset bits D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)"
      "sc.exe sdset wuauserv D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)"
      
      Set-Location $env:systemroot\system32
      
      Write-Host "6. Registering some DLLs..."
      regsvr32.exe /s atl.dll
      regsvr32.exe /s urlmon.dll
      regsvr32.exe /s mshtml.dll
      regsvr32.exe /s shdocvw.dll
      regsvr32.exe /s browseui.dll
      regsvr32.exe /s jscript.dll
      regsvr32.exe /s vbscript.dll
      regsvr32.exe /s scrrun.dll
      regsvr32.exe /s msxml.dll
      regsvr32.exe /s msxml3.dll
      regsvr32.exe /s msxml6.dll
      regsvr32.exe /s actxprxy.dll
      regsvr32.exe /s softpub.dll
      regsvr32.exe /s wintrust.dll
      regsvr32.exe /s dssenh.dll
      regsvr32.exe /s rsaenh.dll
      regsvr32.exe /s gpkcsp.dll
      regsvr32.exe /s sccbase.dll
      regsvr32.exe /s slbcsp.dll
      regsvr32.exe /s cryptdlg.dll
      regsvr32.exe /s oleaut32.dll
      regsvr32.exe /s ole32.dll
      regsvr32.exe /s shell32.dll
      regsvr32.exe /s initpki.dll
      regsvr32.exe /s wuapi.dll
      regsvr32.exe /s wuaueng.dll
      regsvr32.exe /s wuaueng1.dll
      regsvr32.exe /s wucltui.dll
      regsvr32.exe /s wups.dll
      regsvr32.exe /s wups2.dll
      regsvr32.exe /s wuweb.dll
      regsvr32.exe /s qmgr.dll
      regsvr32.exe /s qmgrprxy.dll
      regsvr32.exe /s wucltux.dll
      regsvr32.exe /s muweb.dll
      regsvr32.exe /s wuwebv.dll
      
      Write-Host "7) Removing WSUS client settings..."
      REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v AccountDomainSid /f
      REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v PingID /f
      REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientId /f
      
      Write-Host "8) Resetting the WinSock..."
      netsh winsock reset
      netsh winhttp reset proxy
      
      Write-Host "9) Delete all BITS jobs..."
      Get-BitsTransfer | Remove-BitsTransfer
      
      Write-Host "10) Attempting to install the Windows Update Agent..."
      if($arch -eq 64){
          wusa Windows8-RT-KB2937636-x64 /quiet
      }
      else{
          wusa Windows8-RT-KB2937636-x86 /quiet
      }
      
      Write-Host "11) Starting Windows Update Services..."
      Start-Service -Name BITS
      Start-Service -Name wuauserv
      Start-Service -Name appidsvc
      Start-Service -Name cryptsvc
      
      Write-Host "12) Forcing discovery..."
      wuauclt /resetauthorization /detectnow
      
      Write-Host "Process complete. Please reboot your computer."
      
      posted in IT Discussion
      J
      JasGot
    • RE: Any Way to Automate Adding a New Computer to an AD Group?

      @wrx7m said in Any Way to Automate Adding a New Computer to an AD Group?:

      @JasGot said in Any Way to Automate Adding a New Computer to an AD Group?:

      dsmod group

      Looks like this requires RSAT too.

      Don't think so. At least these commands work on my workstation and server without RSAT installed.

      posted in IT Discussion
      J
      JasGot
    • RE: Windows 7 Cannot Update

      @scottalanmiller said in Windows 7 Cannot Update:

      Yup, took over two hours. But didn't change anything.

      Okay. We use a Windows Update Reset Script when offline updater doesn't work.

      posted in IT Discussion
      J
      JasGot
    • RE: Any Way to Automate Adding a New Computer to an AD Group?

      And this will get you the full CN name:

      dsquery computer domainroot -name %computername%
      

      returns

      "CN=JASON-I7,OU=Employee Computers,DC=abc,DC=local"
      
      posted in IT Discussion
      J
      JasGot
    • RE: Windows 7 Cannot Update

      @scottalanmiller said in Windows 7 Cannot Update:

      Ran updates for two hours.... same result.

      You ran the client installer after the generator? This is usually a 4 or 5 hour process..... With several reboots.

      posted in IT Discussion
      J
      JasGot
    • RE: Any Way to Automate Adding a New Computer to an AD Group?

      @wrx7m My apologies, it's the dsmod command for computers against groups.

      Just tested this:

      I added a new group called "test" in the Employee Computers OU and then ran.

      dsmod group "CN=test,OU=employee computers, DC=abc,DC=local" -addmbr "CN=jason-i7,OU=Employee Computers,DC=abc,DC=local"
      
      dsmod succeeded:CN=test,OU=employee computers,DC=abc,DC=local
      
      posted in IT Discussion
      J
      JasGot
    • RE: Updated - Connecting to 1 Site With Separate Logins/Several IPs

      @wrx7m said in [Updated - Connecting to 1 Site With Separate Logins/Several IPs]>

      This works on Windows 10 (1703, 1809, 1903), Server 2016 (1607), Server 2012 R2 and Server 2008 R2.

      Tor is another option. Proxies are already out there.

      Lots of guides on setting it up to run multiple browsers from different IPs. We did it years ago for a project and it was perfect. Took a few minutes to setup, but was perfect for the task.

      There's even a bash script to do all the setup for you. (Not on Windows, of course)

      posted in IT Discussion
      J
      JasGot
    • RE: Any Way to Automate Adding a New Computer to an AD Group?

      @wrx7m %computername%

      posted in IT Discussion
      J
      JasGot
    • RE: Windows 7 Cannot Update

      @scottalanmiller 🙂

      posted in IT Discussion
      J
      JasGot
    • RE: Updated - Connecting to 1 Site With Separate Logins/Several IPs

      What OS?

      posted in IT Discussion
      J
      JasGot
    • RE: Any Way to Automate Adding a New Computer to an AD Group?

      @wrx7m We use Net and NetDom to automate most tasks like this.

      posted in IT Discussion
      J
      JasGot
    • RE: Windows 7 Cannot Update

      We use an offline windows update installer to get past issues like this (assuming you've exhausted all other fixes and troubleshooting options). Specifically we use: http://download.wsusoffline.net/

      posted in IT Discussion
      J
      JasGot
    • RE: Any Way to Automate Adding a New Computer to an AD Group?

      In a script, startup/logon or otherwise.

      Net localgroup <group> <domain name><computer name>$ /ADD

      Localgroup does not imply the local group on the workstation, that is determined by whether you have a domain name\ in front of the computer name

      posted in IT Discussion
      J
      JasGot
    • RE: Dell Hot Swap 2.5" drive in place of 3.5"

      @pmoncho said in Dell Hot Swap 2.5" drive in place of 3.5":

      Received confirmation from Dell support rep that they only stock 2.5" drives in this size, there are no reported issues with this type of replacement and all should be well.

      Well, we are going to find out later tonight when users log out.

      We have used 2.5" from dell to replace a 3.5" in a failed raid many times with no issues. Like @JaredBusch said, though, double check that backup first, even though the drive came early, it's premature to drop it in.....

      posted in IT Discussion
      J
      JasGot
    • RE: Demo VoIP phone DSS Key programming - What do YOU do?

      @kamidon said in Demo VoIP phone DSS Key programming - What do YOU do?:

      Really it just depends on the type of business, people and location. If they're down to earth, well all of what you mentioned would be a great idea to put on.

      This is good, all of our customer are down to earth and easy going, so I appreciate you saying this.

      Definitely do a directory setup because you want to demo that feature.

      Thanks for the confirmation. I was thinking this would be so easy and so impressive. Couldn't NOT do it!

      posted in IT Discussion
      J
      JasGot
    • RE: Demo VoIP phone DSS Key programming - What do YOU do?

      @JaredBusch said in Demo VoIP phone DSS Key programming - What do YOU do?:

      @JasGot This would depends entirely on how stupid the users are.

      Most users cannot do anything of the sort without a lot of hand holding.

      THen it gets into what are you wanting them to update. the BLF/Seeddials? Well that then also gets into the Phone vs PBX User interface.

      basically the answer is I don't. I drop a phone with a user and some buttons preset. I then also instruct them how to 10 digit dial. Nothing else.

      I plan to provide some programmed buttons to make their lives easier when we install the system.

      I don't want them updating anything; we will do that.
      I guess I could have been more clear and said "I also thought I'd let them choose some others after the phones are dropped off, to demonstrate how quick and easy it is FOR US to manage their phones."

      I am looking for ideas of what might be handy to have programmed in for them to experience on the demo unit; keeping in mind it only has extension access to the other demo devices and the outside world.

      posted in IT Discussion
      J
      JasGot
    • 1
    • 2
    • 60
    • 61
    • 62
    • 63
    • 64
    • 72
    • 73
    • 62 / 73