• Windows 10 1709 VLSC ISO the same for all version

    5
    1 Votes
    5 Posts
    2k Views
    DashrenderD

    @reid-cooper said in Windows 10 1709 VLSC ISO the same for all version:

    @dashrender said in Windows 10 1709 VLSC ISO the same for all version:

    @travisdh1 said in Windows 10 1709 VLSC ISO the same for all version:

    Hasn't it always been like that?

    For those that don't know, even the home version has a file you can remove from the installer and it'll do any version. Once installation is complete, register it with the proper key and you're good to go.

    Maybe with Windows 10, but definitely not with Windows 7 and previous versions. There was no home version of VLSC. I suppose there were files you could change, but damn.. now you're screwing with the HASH of the ISO.. no thanks.

    But I think his point is that the VLSC version has long been a single ISO for many versions.

    OIC, I hadn't heard this before... so I reported it..

  • 2 Votes
    1 Posts
    820 Views
    No one has replied
  • Powershell issues with splitting or trimming data in a $string

    7
    0 Votes
    7 Posts
    2k Views
    computerchipC

    @dafyre said in Powershell issues with splitting or trimming data in a $string:

    @computerchip said in Powershell issues with splitting or trimming data in a $string:
    Change this: $data[0] | Out-File -filepath C:\temp\chip\whois_data.csv -append

    to

    $data=$data -join "," $intLastChar=$data.indexof("DNSSEC")+2 $data=$data.substring(0,$intLastChar)

    That converts $data to a string (separated by comma), finds "DNSSEC" and adds two to it (to remove the leading comma), and then tosses out everything extra.

    I believe that's going to work, testing more now. Thanks!

  • 0 Votes
    29 Posts
    6k Views
    scottalanmillerS

    @stacksofplates said in Newb question - Running a script from the root directory:

    @dustinb3403 said in Newb question - Running a script from the root directory:

    @stacksofplates said in Newb question - Running a script from the root directory:

    @dustinb3403 said in Newb question - Running a script from the root directory:

    @stacksofplates said in Newb question - Running a script from the root directory:

    @dustinb3403 said in Newb question - Running a script from the root directory:

    @stacksofplates said in Newb question - Running a script from the root directory:

    @dustinb3403 said in Newb question - Running a script from the root directory:

    @scottalanmiller said in Newb question - Running a script from the root directory:

    @dustinb3403 said in Newb question - Running a script from the root directory:

    @stacksofplates said in Newb question - Running a script from the root directory:

    @dustinb3403 said in Newb question - Running a script from the root directory:

    @danp said in Newb question - Running a script from the root directory:

    Is the directory in your path? What do you get from echo $PATH?

    echo $PATH
    /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin:/root/opt/scripts/:/root/opt/scripts

    I've added it (twice).

    Well first off you had /root/opt/scripts not /opt/scripts. Second you either have to log out and back in or tell your user to use the new path with something like

    source ~/.bash_profile

    I used ````~/opt/scripts``` initially, as I wasn't aware of just adding my scripts into one of the existing locations. (everything said just add a new directory).

    By simply moving the script into an already existing path, I am able to update with just "script.sh".

    When you are root and your home is /root and you put ~/opt/scripts that is /root/opt/scripts.

    Remember that ~ is a shortcut to your home directory, which is /root

    So by adding ```/opt/scripts/```` this would've worked, but would've added complexity for no reason.

    No that still isn’t a default location. In the OP you said you put the script in /opt/scripts. Where did you actually put it?

    Originally I created the directory /opt/scripts and put the script in there so the Directory looks like

    /opt/scripts/script.sh

    I went back and change the script location to be in /usr/local/bin

    So in /usr/local/bin I now have script.sh

    This now works without issue, and /opt/scripts no longer exists.

    Ok ya that’s where the problem was. /opt/scripts is different than /root/opt/scripts. If you would have had that in your .bashrc or .bash_profile (or whichever shellconfigure you’re using) it would have worked. But you still have to let the user know of the PATH change.

    I'm the user in this case, but I never really create / save my own scripts. I just got tired of running a set of commands, every other day.

    Thus the need to figure out how I could run the script, without having to jump into the exact directory from which the script was saved.

    I mean you have to let the user you are logged in as Know if the change. Either by logging out and back in or by temporarily sourcing the config.

    I've logged out, what do you mean "sourcing the config" ?

    If you change your PATH while you’re logged on the user account doesn’t know of that change. You have to either log out and log in again or temporarily do something like

    source ~/.bashrc

    Or the non-aliased version...

    . ~/.bashrc
  • WPA2 Hacked

    56
    6 Votes
    56 Posts
    6k Views
    JaredBuschJ

    @dustinb3403 said in WPA2 Hacked:

    @hobbit666 said in WPA2 Hacked:

    @mike-davis said in WPA2 Hacked:

    My controller now will let me upgrade some APs, but not others. For the client below, the APs are on the same firmware, but one is showing the upgrade available and the other not. I'll keep watching it as the day goes on.

    0_1508329290610_APupgrade.png

    Did you download the Firmware to the controller or did it just appear by it self?

    The controller has to be upgraded through the normal upgrade process.

    No it does not. there is a button specifically to load out of band firmware.

  • Equifax Again

    15
    3 Votes
    15 Posts
    2k Views
    DustinB3403D

    @aaronstuder I watched that video some time ago, such a good channel.

  • Ubuntu/shred?

    39
    1 Votes
    39 Posts
    3k Views
    IRJI

    @jimmy9008 said in Ubuntu/shred?:

    @gjacobse said in Ubuntu/shred?:

    Nothing wrong with doing a multi pass as well... I have heard of people going so far as to create a 'dumb text' file of junk text and copying it to fill the drive, then doing the DBAN. Also - if it is a physical ARRAY - by killing it, you add another layer of obscurity...

    I generally have just pulled drives and kept them. They are cheap and easy enough to replace, and can be found new, refurb or used...

    We're donating with the drives, so will be wiping them to a reasonable standard.
    Just trying to find out id one pass of 0's is actually a reasonable standard....

    No it's not. DoD wiping is done with 7 passes. This is a very old standard and has been around a long time.

  • Hyper-V Failover Cluster FAILURE(S)

    140
    0 Votes
    140 Posts
    18k Views
    Reid CooperR

    @dashrender said in Hyper-V Failover Cluster FAILURE(S):

    @tim_g said in Hyper-V Failover Cluster FAILURE(S):

    @kyle said in Hyper-V Failover Cluster FAILURE(S):

    @dashrender said in Hyper-V Failover Cluster FAILURE(S):

    The logs say the switches aren’t saturated, but I wonder is a network broadcast issues can’t be an issue here in the new network size.

    I'm going to have to verify the network settings are correct tomorrow again since the 5 NICs associated with the nodes are all over the place I'm going to guess it has something to do with that.

    They said they had this exact same issue a few months ago but the logs do not go back that far so I cannot compare the events. But having the cluster fail twice in 2 days isn't sitting right with me since it started occurring just days after switching IP ranges.

    I've dumped all the logs and documented everything I have found that look out of place.

    Isn't the SAN network isolated both physically and logically from everything else?

    Nope he said they are not.

    That's not good. So it isn't really a SAN, just a normal network with SAN traffic dumped onto it?

  • Install permissions

    8
    0 Votes
    8 Posts
    749 Views
    Reid CooperR

    Remember that if they can install things without any prompting, it means that malware will install without any prompting either. And that malware will have admin rights, not user rights.

  • Helpdesk SLAs

    20
    0 Votes
    20 Posts
    3k Views
    Reid CooperR

    @kyle said in Helpdesk SLAs:

    @travisdh1 said in Helpdesk SLAs:

    @kyle said in Helpdesk SLAs:

    @scottalanmiller said in Helpdesk SLAs:

    @ambarishrh said in Helpdesk SLAs:

    @scottalanmiller said in Helpdesk SLAs:

    @ambarishrh said in Helpdesk SLAs:

    we are a very small team now, 250+ users 3 techs. Screen connect plays a bigger role here! 🙂

    Idea is to set an SLA and review this on regular basis, find out the gap and either increase headcount or if no budget for additional headcount, then increase the SLA.

    With the current tech headcount, the SLA that we are thinking are:

    0_1507276456209_e6fcd8e9-e100-4a64-a977-1febb6c25811-image.png
    *Resolution includes temporary fix or work-around solution.

    New hardware requests usually take 4-6 weeks to deliver from HP (we can keep stock of 5 but the user requests are quite a lot this year and next year as well, but no finance approval to keep more than 5 as of now), so agreed with HR on this timeline.

    An SLA means that there is a punishment to you if you do not meet the requirements. What happens to the IT team if they cannot resolve these issues in the SLA time? How do you determine what is within the scope of what IT can have fixed and not?

    The purpose for this is also to evaluate the existing issues, see if our small team can cater the requirements and based on the results we either get more people or increase the sla. As of now this will be visible only to IT team and based on our analysis we will release to users on a later stage with SLA that we can achieve

    SLAs are not a good tool for that. Just use good reporting for that. SLAs are adversarial, not something you ever want to use internally.

    Yet they are integrated in several helpdesk options.

    Yes, because help desk software is a generic thing that can be used with the public, internally, or a combination of both. Just because a feature is already integrated doesn't mean it's a good option to use. I think of something like an SLA for leased lines like T1/T3.

    I know. I just wish they were more granular in features as there are some hard coded features the are unnecessary and just clutter the classification of tickets. We currently use ManageEngine Service Desk and SLA's are built in and part of the reporting metrics despite the fact we don't use them.

    I generally prefer light, simple helpdesks. Unless you are a huge organization, most of that extra stuff is just wasted and in the way.

  • Hyper V replica VS DFS

    17
    0 Votes
    17 Posts
    2k Views
    J

    @tim_g said in Hyper V replica VS DFS:

    @jimmy9008 said in Hyper V replica VS DFS:

    @tim_g said in Hyper V replica VS DFS:

    @jimmy9008 said in Hyper V replica VS DFS:

    Also remember, replica/DFS is not a backup. This is useful if you are using it for some sort of DR, but its not a backup (just saying in case this was for a backup).

    It can be used as hardware redundancy and to speed up file access in remote locations.

    Yes, it has many uses. But my point was its not a backup. So, wanted to make sure this wasn't in place for a backup.

    Good call! He did mention a secondary offsite server... but never mentioned the reason. Could be for backup?

    My thoughts exactly. Hence saying what I said 😉

    If using replica from A -> B, and if they think its a backup.... just wait for the VM on A to get ransomware... and bad times as yep - B also has the locked files.

    Hyper-V Replica is not a backup. Its a DR type thing. DFS is not a backup, its a file distribution system.

  • Veritas NetBackup Enterprise Backup Installation

    3
    1 Votes
    3 Posts
    587 Views
    scottalanmillerS

    @ghani said in Veritas NetBackup Enterprise Backup Installation:

    Dear Team,

    I am a beginner to vertias enterprise backup. I need to know how to the implementation of new Vertias enterprise backup new environments. My customers have one NetBackup Enterprise license , 1TL4000 Tape library with 4LTO7FC drivers. kindly provide your suggestion/support to quick start NetBackup Enterprise backup.

    My point of view,
    a) Need to installing Netbackup Enterprise backup software on RHEL 7.0 OS Server.
    b) Need to installed Netbackup Media Server software on RHEL 7.0 OS server with connected Tape Library.
    c) Need to installed Agents on Veritas backup clients.

    Above step process is correct or wrong ? kindly provide your support.

    Thanks
    Ghani

    Sounds like the correct process. It's been quite a while since I did a greenfield NetBackup deployment and a lot may have changed. It was Solaris when I last did it, but I used to work for Veritas doing this in the field.

  • Software and Hardware Raid

    44
    0 Votes
    44 Posts
    4k Views
    travisdh1T

    @jmoore said in Software and Hardware Raid:

    For myself there is value in me running a good Raid system at home. Who couldn't use a little better performance and reliability? I will do Raid 10. The most important thing to me is the learning experience and I like knowing best practices if at all possible. However, there are still things to consider. Remember everything I do at home is to help me learn something else in case I ever need it and I just l lots of vm's in a Raid 10 system?

    That's actually great for learning at home. Nothing is handed to you on a silver platter ready to go. That said, getting KVM and software RAID running is straight forward (notice I didn't say easy.)

  • Any reason to avoid /16 in 2017?

    23
    1 Votes
    23 Posts
    4k Views
    DashrenderD

    @kyle said in Any reason to avoid /16 in 2017?:

    @scottalanmiller said in Any reason to avoid /16 in 2017?:

    @kyle said in Any reason to avoid /16 in 2017?:

    The employer I just went to work for was convinced to go from a /24 to a /16 because they were told this was necessary to fix the issues with the VLAN's. The turn up of this was on my 3rd day on the job so I had no idea when I signed on as to why they were making the change. The company has 14 locations on an MPLS but the IP addressing schema is all over the board.

    LMAO.

    I'm telling you. The "MSP" is like dealing with psychopathic monkey with alzheimer's.

    lol damn.

  • Preferred WAF for your website

    6
    0 Votes
    6 Posts
    881 Views
    wrx7mW

    Cloudflare here. I recently enabled DNSSEC. Super easy.

  • Forcing Group Policy

    15
    0 Votes
    15 Posts
    2k Views
    black3dynamiteB

    @wrx7m said in Forcing Group Policy:

    In the future you can also use this command (run as admin) on the affected system to view which GPOs are being applied.

    gpresult /h c:\gp.html /f

    Once it creates the file, open it and show all content and do a ctrl + f for the GPO name or even the setting specific to the issue to see if it says it is being applied or blocked. You can use this to troubleshoot link order or permissions issues or even if it is showing at all (maybe you have a wmi filter or link disabled)

    Group Policy Results in Group Policy Managment Console can provide the same results too.

  • HyperV Partitioning

    25
    0 Votes
    25 Posts
    3k Views
    ObsolesceO

    @storageninja said in HyperV Partitioning:

    My point is that things in the IO path go through that VM. They didn't want to write a full IO driver stack for Hyper-V so they have the VM for that. Compute/Memory doesn't go through it (that I know of), but network and disk IO do. (Otherwise Perfmon wouldn't work as a monitoring solution on the host).

    I think you have some misconceptions or misunderstandings regarding the Hyper-V architecture and components... or Hyper-V stack...

    This is not true at all, as it actually depends on the OS running in a VM.

    Operating systems that already have the integration components baked into their kernel (Enlightened VMs) use their own Hypercalls to communicate directly to the hypervisor, then to the physical hardware.

    Only for non-supporeted (older) operating systems, does the "parent partition" intercept the VM communication, emulating Hypercalls. In this case, there are performance degradations as the management OS needs to work as a bridge to allow the VM to access the hardware.

    To note, this is why it's important for VMs to be running with the latest IC version.

  • Infected Windows Laptop

    10
    0 Votes
    10 Posts
    2k Views
    wrx7mW

    The safest plan is like @marcinozga suggested- Nuke it.

  • Salt grain to retrieve users present on minion (Windows)

    6
    3 Votes
    6 Posts
    3k Views
    scottalanmillerS

    @flaxking said in Salt grain to retrieve users present on minion (Windows):

    @scottalanmiller said in Salt grain to retrieve users present on minion (Windows):

    @flaxking said in Salt grain to retrieve users present on minion (Windows):

    @scottalanmiller said in Salt grain to retrieve users present on minion (Windows):

    Salt seems like the obvious tool for desktop administration to me!

    And the thing is that automating desktop configuration has been the norm for longer than automating server configuration (at least in the Windows word), just with crappier tools.

    Yeah, very weird that people don't see this. @QuixoticJeremy actually presented on using tools like Salt to manage desktops at MangoCon 2017 a few months ago.

    No MangoCon 2017 videos up yet?

    No, waiting on @Minion-Queen

  • 0 Votes
    27 Posts
    94k Views
    Mike DavisM

    @gjacobse said in Plantronics Voyager Legend Will Not Charge:

    neat little dohicky... now - just how much for that wonderful bit of tech....

    $150 - $300 depending on the model. Similar to Plantronics.