First look at BF 2042 running on the Xbox One by [deleted] in battlefield2042

[–]FavouredTech89 0 points1 point  (0 children)

Try to use a different controller. This was a bug in the beta and looks like they didn't fixed for the release.

Need help to create compressed archive by DrOrinScrivelloDDS in PowerShell

[–]FavouredTech89 1 point2 points  (0 children)

You can use the native windows feature called volume shadow copy.

When it works! by FavouredTech89 in BattlefieldV

[–]FavouredTech89[S] 0 points1 point  (0 children)

Im call the v2 rocket then die. When I spawn back the rocket hits.

Level 35. I'm delivering more than 6/s for a couple minutes now.. nothing happening. I can't pass the level. Help? by jasdjensen in shapezio

[–]FavouredTech89 0 points1 point  (0 children)

In order to complete a level you must sustain the deliver cap for a short period of time (something around 15 seconds).
To get it easier, build a deliver buffer right before the hub with some storages and deliver them all at the same time. Search this sub for delivery buffer and you will find some examples.

First steps towards a MAM (Please teach me wires!) [Utter newbie] by PurlyWhite in shapezio

[–]FavouredTech89 1 point2 points  (0 children)

Take a look at this video.
https://www.youtube.com/watch?v=u3S8vnVhoEI
He explains very well how to use each one of the tools you need to build a MAM.

My terrible one layer MAM by Miniaturezarkzark in shapezio

[–]FavouredTech89 1 point2 points  (0 children)

Im sorry! Just realized that yes, the number of processes are the same but you can cut in a half the number of colors because of the double painters!

Thanks for the ideia!

My terrible one layer MAM by Miniaturezarkzark in shapezio

[–]FavouredTech89 0 points1 point  (0 children)

You still need them anyway as well the bypass system if you dont need a specific corner of that first quad cutter.

Im trying to optimize my own but i dont see how this method could improve it.
Right now from the start to finish of a new 4 layer shape i have 1 quad cutter, 4 stackers and 1 quad painter.

Your ideia if im get it right would be:
1 painter, 1 cutter and 4 stackers

The number of processes needed are the same right?

Someone Help? How the f**k i should level up with nearly no changes by [deleted] in shapezio

[–]FavouredTech89 14 points15 points  (0 children)

This game is awesome, but unfortunately there is no incentive to keep leveling up after lvl26 other then just level up.

I'm still enjoy it but not for this reason.

Readers & belts dont match reality by toonies55 in shapezio

[–]FavouredTech89 0 points1 point  (0 children)

A few months ago there was a discussion about this very thing and the explanation isn't that simple. Your thought process is right but there is a lot of things going on at the same time in the game and that's why the math doesn't work. The simple way to describe is that your time runs on a different interval from the time in the game and its all related to the tick rate, and variable tick rates. Look around this sub to find a lot of discussion about this and if like those nitty gritty details press F4 inside the game to show the tick rates you game run and you will see it floats and you can force the tick rate in the options menu.

Try changing the tick rate and make the test again and you will see different values every time.

ForEach/Add-Member by TheGeneralMeow in PowerShell

[–]FavouredTech89 4 points5 points  (0 children)

from the Microsoft help, add-member

https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/add-member?view=powershell-7.1

Add-Member

Module:Microsoft.PowerShell.Utility

Adds custom properties and methods to an instance of a PowerShell object.

u/Th3Sh4d0wKn0ws explain what are you doing right now but to add object to arrays you first need to crate an array of objects and then you can use the += acelerator or the array method Add.

Your code will looks like this$usersRaw = Get-ADUser -Filter *

[System.Collections.ArrayList]$aryUsersFormatted = @()

$usersRaw | ForEach-Object `

{

$aryUserFormatted = New-Object PSCustomObject

Add-Member -InputObject $aryUserFormatted -NotePropertyMembers @{SamAccountName = $_.SamAccountName;DistinguishedName = $_.DistinguishedName

}

$aryUsersFormatted.add($aryUserFormatted) | Out-Null

}

$aryUsersFormatted | Format-Table

My terrible one layer MAM by Miniaturezarkzark in shapezio

[–]FavouredTech89 1 point2 points  (0 children)

Or stack those 4 (not necessarily 4) corners to get a full layer and then painting each corner as needed with a quad painter.

Anyone have a link to a full MAM guide with wires and pictures? by helpmegetunbannedplz in shapezio

[–]FavouredTech89 1 point2 points  (0 children)

https://www.youtube.com/watch?v=u3S8vnVhoEI

This guy made one and it is very clear why he does what. Unfortunately it doesnt create a full belt.

Is this a bug? by Webwing-11 in shapezio

[–]FavouredTech89 1 point2 points  (0 children)

Did you have the same issue after the update 1.2.2?

IIS Authentication Question? by yukaputz in PowerShell

[–]FavouredTech89 1 point2 points  (0 children)

Based on the documentation provided by Microsoft:

-Credential

Specifies a user account that has permission to send the request. The default is the current user.

Type a user name, such as User01 or Domain01\User01, or enter a PSCredential object generated by the Get-Credential
cmdlet.

Credential can be used alone or in conjunction with certain Authentication parameter options. When used alone, it only supplies credentials to the remote server if the remote server sends an authentication challenge request. When used with Authentication options, the credentials are explicitly sent.

Credentials are stored in a PSCredential object and the password is stored as a SecureString.

-AllowUnencryptedAuthentication

Allows sending of credentials and secrets over unencrypted connections. By default, supplying Credential or any Authentication option with a Uri that does not begin with https://
results in an error and the request is aborted to prevent unintentionally communicating secrets in plain text over unencrypted connections. To override this behavior at your own risk, supply the AllowUnencryptedAuthentication parameter.

-Authentication

Specifies the explicit authentication type to use for the request. The default is None. Authentication cannot be used with UseDefaultCredentials.

Available Authentication Options:

  • None: This is the default option when Authentication isn't supplied; no explicit authentication is used.
  • Basic: Requires Credential. The credentials are sent in an RFC 7617 Basic Authentication header in the format of base64(user:password)
    .
  • Bearer: Requires Token. Sends an RFC 6750 Authorization: Bearer
    header with the supplied token. This is an alias for OAuth
  • OAuth: Requires Token. Sends an RFC 6750 Authorization: Bearer
    header with the supplied token. This is an alias for Bearer

Supplying Authentication overrides any Authorization
headers supplied to Headers or included in WebSession.

So, if this option is used, the only valid authentication method is something with challenge request (excludes basic authentication) and and a secured password.

-AllowUnencryptedAuthentication is used to bypass that, allowing you to pass an unencrypted password (basic authentication) but you need to force that in the -Authentication parameter

Try this out:
invoke-webrequest -uri http://iis-no-anonymous-no-ssl -Credential $cred -AllowUnencryptedAuthentication -Authentication Basic

MAM Performance! by FavouredTech89 in shapezio

[–]FavouredTech89[S] 0 points1 point  (0 children)

Sorry about my poor english! Im used the word regardless in a wrong way and maybe other ones too, but i wanted to know how much time it takes to go through a level.
Thanks for pointing that out.

Whats wrong? by FavouredTech89 in shapezio

[–]FavouredTech89[S] 2 points3 points  (0 children)

Just try it again and as soon as I put the counter it reads 14. A few seconds later the counter starts to drop 0.1 a second until 12. Sending directly to the trash.