ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Categories
    3. IT Discussion
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • LakshmanaL

      Powershell Help Needed Part2

      Watching Ignoring Scheduled Pinned Locked Moved
      20
      0 Votes
      20 Posts
      2k Views
      NerdyDadN

      @lakshmana said in Powershell Help Needed Part2:

      Okay forget everything.I need only powershell commands which needes fo open the browser automatically and need to go to another page by searching keyword in that website(consider open facebook.com and click on forgot password without human intervention that click option sgojld be through Powershell).Once the keyword is searched there will be a excel is downloaded from the website then that content needs to be copied in automatically to the outlook and that mail should also send automatically without human intervention

      Check out the Invoke-WebRequest command and the send-mailmessage command. Work on everything else in between.

    • mlnewsM

      Ansible for MS SQL Server on Windows

      Watching Ignoring Scheduled Pinned Locked Moved ansible devops windows server ms sql server xp
      9
      3 Votes
      9 Posts
      11k Views
      stacksofplatesS

      It's kind of hard to help without seeing the playbook/role you created.

    • mlnewsM

      Cisco and Dell RSTP Setup for Nutanix Cluster

      Watching Ignoring Scheduled Pinned Locked Moved rstp cisco nutanix xp
      4
      1 Votes
      4 Posts
      2k Views
      dbeatoD

      For the Dell X Series look at it below:
      https://www.dell.com/support/article/us/en/19/how10377/how-to-enable-rapid-spanning-tree--rstp--on-d...

    • DustinB3403D

      KVM - Virt-Manager on a Separate VM

      Watching Ignoring Scheduled Pinned Locked Moved kvm beginner learning lab
      68
      0 Votes
      68 Posts
      7k Views
      JaredBuschJ

      @tim_g said in KVM - Virt-Manager on a Separate VM:

      @dustinb3403 said in KVM - Virt-Manager on a Separate VM:

      @tim_g said in KVM - Virt-Manager on a Separate VM:

      @dustinb3403 said in KVM - Virt-Manager on a Separate VM:

      @tim_g said in KVM - Virt-Manager on a Separate VM:

      @dustinb3403 said in KVM - Virt-Manager on a Separate VM:

      @jaredbusch said in KVM - Virt-Manager on a Separate VM:

      @DustinB3403

      I use my user in the libvirt group so I do not have to bother with the root user.

      gpasswd -a jbusch libvirt

      Then this works.
      0_1512760351248_a5ddf1f5-ef56-46e1-b1a7-f9593c68a19c-image.png

      Holy fuck it took way to long to get to this point.

      So here is the stupid approach. ssh-keygen -t rsa generating. . . . . . . . . The key fingerprint is . . . ssh-copy-id -i /home/user/.ssh/d_rsa.pub user@kvm-server-ip

      Login with user@kvm-server-ip password

      Test the login

      Disconnect from the remote server and run this next bit on your management system.

      gpasswd -a username libvirt

      Done, and it works.

      @JaredBusch thanks for cutting through the bullshit and helping out here.

      Wyd you talking about. JARED mentioned that step like 3 posts down from your OP, and it was mentioned several other times as well.

      Huh?

      Nothing was as simple as what I just did, Jared was getting to the point at the top of the topic, but there were additional steps I was missing (failed to do entirely). So I dumped all of the rsa keys, and started fresh.

      The whole thing is taht simple.

      generate your ssh keys copy the ssh keys add to libvirt group (mentioned in beginning of thread and every other KVM related thread)

      Done. You can break that up into as many sub steps as you want, but that's what you do.

      nevermind. . .

      That's the entire point i tried to make in my 5-steps before it getting ripped apart for me wanting to use 4096 instead of 2048, and not using ssh-copy-id.

      Because you were a twit about it.

    • S

      Facilities management

      Watching Ignoring Scheduled Pinned Locked Moved asset management ticketing maintenance
      21
      0 Votes
      21 Posts
      3k Views
      IRJI

      Oh and I rarely if ever had to do anything with SpendMap. Their support was absolutely fantastic! We had it for a few years and I think I only touched the servers to update them here or there. The support did all app updates themselves and I just had to be available for support if something went awry.

    • LakshmanaL

      Powershell output in Email is Possible

      Watching Ignoring Scheduled Pinned Locked Moved powershell send-mailmessage windows scripting
      21
      1 Votes
      21 Posts
      4k Views
      ObsolesceO

      Here is a script I made to set up a scheduled task to either launch a PowerShell script, or a batch file.

      Comment out the $action line that you do NOT want to use. The below script will create a scheduled task that launches a PowerShell script called psScript.ps1.

      Note that you must execute these lines in an elevated PowerShell window.

      #Requires -RunAsAdministrator $action = New-ScheduledTaskAction -Execute 'C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe' -Argument "-ExecutionPolicy bypass -NonInteractive -NoLogo -NoProfile -File '\\server\path\to\psScript.ps1'" # $action = New-ScheduledTaskAction -Execute '\\server\path\to\batchFile.bat' $trigger = New-ScheduledTaskTrigger -AtLogon $principal = New-ScheduledTaskPrincipal -GroupId "BUILTIN\Administrators" -RunLevel Highest $settings = New-ScheduledTaskSettingsSet $task = New-ScheduledTask -Action $action -Trigger $trigger -Principal $principal -Settings $settings Register-ScheduledTask -TaskName "kickoff" -InputObject $task

      If you choose to launch the PowerShell script via a batch file, here's what you need to have in your .bat file:

      Powershell.exe -executionpolicy bypass -File "\\server\path\to\psScript.ps1"
    • FredtxF

      What does the >> cursor mean in Powershell after typing a command?

      Watching Ignoring Scheduled Pinned Locked Moved shell powershell
      6
      1 Votes
      6 Posts
      1k Views
      FredtxF

      @scottalanmiller That did the trick. Didn't even cross my mind. Thanks!

    • IRJI

      Non-Promotional Spam Like Post

      Watching Ignoring Scheduled Pinned Locked Moved
      20
      0 Votes
      20 Posts
      1k Views
      scottalanmillerS

      @irj said in Non-Promotional Spam Like Post:

      @jaredbusch said in Non-Promotional Spam Like Post:

      @irj said in Non-Promotional Spam Like Post:

      @scottalanmiller said in Recover Android files on phone with broken screen:

      @irj said in Recover Android files on phone with broken screen:

      @scottalanmiller said in Recover Android files on phone with broken screen:

      @irj said in Recover Android files on phone with broken screen:

      @luoyea said in Recover Android files on phone with broken screen:

      In your situation, you may need to ask help from a Broken Android Data Extraction tool. It helps you extract data from a broken screen or dead Android phone.

      @scottalanmiller is an account like this spam? It was created to comment on a thread that has already been resolved? It doesn't appear the account is pushing any agenda or anything. It just seems weird to make an account to create one comment then disappear.

      I looked at it and couldn't tell. It seemed fishy, especially as it is about Android stuff, always a trigger. But there is no link and no product mentioned. So can't figure out how it could be.

      Yeah that was puzzling me as well.

      Might be spam, but if it is, it's non-promotional spam. 🙂

      It is really an odd type of spam because it doesn't benefit the spammer.

      Incorrect. Well moderated communities and communities with good bot prevention like ML end up with this type of spammer.

      Generally they post a couple "safe" replies over a small period of time, then they drop their links. suddenly. and if not banned, repeat again in a few weeks.

      Not typically bots, but cheap labor paid to simply log in and do so.

      Wow! That seems like a lot of work with very little if any reward!

      SPAM is big money, and the effort is tiny. Like, approaching zero.

    • Emad RE

      Smart Phishing Spams worrying me

      Watching Ignoring Scheduled Pinned Locked Moved spam phishing
      7
      0 Votes
      7 Posts
      1k Views
      scottalanmillerS

      @coliver said in Smart Phishing Spams worrying me:

      This is called spear phishing or targeted phishing. There isn't much you can do about it from a technical perspective. Train your users is about the only option.

      That's really the case. The thing about spear phishing is that it is all but impossible to conidently detect unless you are the human recipient and can verify the details in some other manner.

    • Emad RE

      Alternative to ESXi Thin VHD

      Watching Ignoring Scheduled Pinned Locked Moved esxi thin vhd deflate punch zero
      9
      0 Votes
      9 Posts
      2k Views
      Emad RE

      @storageninja

      Thanks so much, I will read in the mean time those blogs:

      https://www.codyhosterman.com/
      https://blogs.vmware.com/vsphere/author/cormac_hogan

    • JaredBuschJ

      FreePBX extensions to Yealink Phone book can someone who knows python make htis better

      Watching Ignoring Scheduled Pinned Locked Moved python freepbx extensions contacts
      8
      3 Votes
      8 Posts
      3k Views
      JaredBuschJ

      @smitherick said in FreePBX extensions to Yealink Phone book can someone who knows python make htis better:

      Awesome, I wrote our XML remote phonebook by hand with the YeaLink template. This is going to be fun!

      Follow this post.
      https://mangolassi.it/topic/15759/use-a-php-file-to-create-a-dynamic-yealink-remote-address-book-of-freepbx-extensions

    • scottalanmillerS

      Explaining RAID 1 SAMIT Video

      Watching Ignoring Scheduled Pinned Locked Moved samit youtube raid storage raid 1 scott alan miller
      1
      1 Votes
      1 Posts
      635 Views
      No one has replied
    • J

      Reverse Proxy?

      Watching Ignoring Scheduled Pinned Locked Moved
      52
      0 Votes
      52 Posts
      3k Views
      scottalanmillerS

      @jimmy9008 said in Reverse Proxy?:

      Perhaps this is just standard proxy?

      I think you just want a standard proxy, yes.

    • openitO

      Why restart works ? Technical reason ?

      Watching Ignoring Scheduled Pinned Locked Moved Solved scottalanmiller jared busch dashrender
      35
      0 Votes
      35 Posts
      5k Views
      DashrenderD

      @tim_g said in Why restart works ? Technical reason ?:

      @jaredbusch said in Why restart works ? Technical reason ?:

      @tim_g said in Why restart works ? Technical reason ?:

      @jaredbusch said in Why restart works ? Technical reason ?:

      @tim_g said in Why restart works ? Technical reason ?:

      @tim_g said in Why restart works ? Technical reason ?:

      @eddiejennings said in Why restart works ? Technical reason ?:

      I'll often have users do a restart, but if the issue is recurring, then I'll take the time to try to find the root cause.

      We do a minimum of forced weekly reboot of computers with updates, regardless of whether or not updates are installed.

      It's been helping a LOT, and is a free way to fix or prevent many issues that waste time and effort from nobody rebooting.

      There are (as always) some exceptions.

      I did this years ago. And no exceptions. The owner buys in to it or he doesn't.

      The reduction of support costs is always the winning decision.

      Yes, from the perspective of a company using service provider.

      But I get paid hourly, so from this companies perspective, it costs the same regardless.

      No it does not. Because you are wasting time (money) doing tasks that are not needed if you would have the reboots scheduled.

      It may be the same to your paycheck, but it is not the same to the company. That is always the point of people trying to justify their jobs. Or of the SMB owner thinking he is saving money by using internal staff of lower skill.

      Yeah, but there are exceptions... not my decision, not my argument.

      of course, if the decision is out of your hands, absolutely that's not on you - just like Mike Davis spending 4 hrs working on a PC issue and costing more than the value of the PC - because the decision maker told them to.

    • EddieJenningsE

      Food for Thought: Backups - from terrible to functional

      Watching Ignoring Scheduled Pinned Locked Moved backup and disaster recovery veeam 3-2-1 backup rule remote backup
      18
      0 Votes
      18 Posts
      3k Views
      JaredBuschJ

      @eddiejennings said in Food for Thought: Backups - from terrible to functional:

      @jaredbusch Wow.

      Was an initial seed of a server. So totally expected when the WAN pipe is only 10mbps up.

      120GB of real data on a thin provisioned 500GB vhdx.

    • ObsolesceO

      Sysctl Server Hardening - Help and Advice

      Watching Ignoring Scheduled Pinned Locked Moved sysctl fedora 26 saltstack
      8
      1 Votes
      8 Posts
      1k Views
      ObsolesceO

      Strictly SYSCTL speaking, here's what I got so far:

      kernel.randomize_va_space: sysctl.present: - value: 2 fs.protected_hardlinks: sysctl.present: - value: 1 fs.protected_symlinks: sysctl.present: - value: 1 net.ipv4.icmp_echo_ignore_broadcasts: sysctl.present: - value: 1 net.ipv4.icmp_ignore_bogus_error_responses: sysctl.present: - value: 1 net.ipv4.tcp_syncookies: sysctl.present: - value: 1 net.ipv4.conf.all.log_martians: sysctl.present: - value: 1 net.ipv4.conf.default.log_martians: sysctl.present: - value: 1 net.ipv4.conf.all.accept_source_route: sysctl.present: - value: 0 net.ipv4.conf.default.accept_source_route: sysctl.present: - value: 0 net.ipv4.conf.all.rp_filter: sysctl.present: - value: 1 net.ipv4.conf.default.rp_filter: sysctl.present: - value: 1 net.ipv4.conf.all.accept_redirects: sysctl.present: - value: 0 net.ipv4.conf.default.accept_redirects: sysctl.present: - value: 0 net.ipv4.conf.all.secure_redirects: sysctl.present: - value: 0 net.ipv4.conf.default.secure_redirects: sysctl.present: - value: 0 net.ipv4.ip_forward: sysctl.present: - value: 0 net.ipv4.conf.all.send_redirects: sysctl.present: - value: 0 net.ipv4.conf.default.send_redirects: sysctl.present: - value: 0 net.ipv4.conf.all.forwarding: sysctl.present: - value: 0 net.ipv6.conf.all.forwarding: sysctl.present: - value: 0 net.ipv4.conf.all.mc_forwarding: sysctl.present: - value: 0 net.ipv6.conf.all.mc_forwarding: sysctl.present: - value: 0 net.ipv6.conf.all.accept_source_route: sysctl.present: - value: 0 net.ipv6.conf.default.accept_source_route: sysctl.present: - value: 0 net.ipv6.conf.all.accept_redirects: sysctl.present: - value: 0 net.ipv6.conf.default.accept_redirects: sysctl.present: - value: 0

      I know some of it may be redundant, as in they already may be set as such by default. My thinking is that should they become changed somehow, this will set it straight again.

      Is this a bad way of thinking or simply not needed?

      Are there any others a good idea or generally a best practice to include?

    • openitO

      What exactly imaging software, any open source or free options ?

      Watching Ignoring Scheduled Pinned Locked Moved scottalanmiller dashrender jared busch timg
      36
      0 Votes
      36 Posts
      5k Views
      scottalanmillerS

      @dashrender said in What exactly imaging software, any open source or free options ?:

      @dustinb3403 said in What exactly imaging software, any open source or free options ?:

      To throw a wrench into this conversation.

      UrBackup is a backup solution that can be run constantly and allows you to restore the backup or any part of it to different hardware.

      So while it falls in the "Backup" category it also blurs the lines a bit.

      Most modern backup solutions can do this.

      Yup, imaging is the process of recreating replicas which are the most common foundation of modern backups.

    • dbeatoD

      5Nine Free Version

      Watching Ignoring Scheduled Pinned Locked Moved 5nin hyperv hypervisor management
      8
      3 Votes
      8 Posts
      1k Views
      dbeatoD

      @penguinwrangler said in 5Nine Free Version:

      I like 5nine when you are setting up a new environment and you don't have a domain setup yet. You don't have to go through the rigamaroll of setting up the hyper-v server and your machine to talk to each other. You use 5nine and get your Domain setup in a virtual machine and then join the Hyper-v and your machine to it.

      Yeah, it is definitely good to get you going.

    • Mike DavisM

      cost of the whitebox

      Watching Ignoring Scheduled Pinned Locked Moved
      11
      1 Votes
      11 Posts
      976 Views
      scottalanmillerS

      @dashrender said in cost of the whitebox:

      @mike-davis said in cost of the whitebox:

      That said I still have some businesses that try to run computers until they won't power on anymore. I've been telling those clients I'm too busy to work on their stuff. It's just painful to work on a computer that slow.

      These are the best to work on - you get paid for just sitting there waiting. Yeah it really does suck to see your time wasted this way - but you are in the business of making money - you informed them of the best IT solution, if they still want to pay you to maintain the machine - take the money to the bank!.

      I'm with Dash. You did all the right things, they didn't, it's not a tragic amount of money, just an annoyance for them, and good work for you. Rejoice in having paid work with low stress and something that can be definitely fixed at the end of the day.

    • dave247D

      Anyone know a place that sells booted Cat6 in feet: 5, 5.5, 6, 6.5, etc?

      Watching Ignoring Scheduled Pinned Locked Moved
      11
      0 Votes
      11 Posts
      787 Views
      dave247D

      @jt1001001 said in Anyone know a place that sells booted Cat6 in feet: 5, 5.5, 6, 6.5, etc?:

      We order custom cables from Provisions Modular hardware. Their website is horrible but if you call them and set up an account they will do custom length patch cables or really any other cable you may need. Their website only lists by the foot but we've ordered custom 12.5ft cables for some of our racks without issues.
      https://www.provisionsmod.com/

      yeah their website need's some work...

      I ended up just saying eff it and ordered from C2G

    • 1
    • 2
    • 272
    • 273
    • 274
    • 275
    • 276
    • 698
    • 699
    • 274 / 699